-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ fix ] Support dependent pairs in generators then initing coverage
- Loading branch information
Showing
5 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
module PrintCoverage | ||
|
||
import Test.DepTyCheck.Gen | ||
import Test.DepTyCheck.Gen.Coverage | ||
|
||
import Deriving.DepTyCheck.Gen | ||
|
||
import System.Random.Pure.StdGen | ||
|
||
%default total | ||
|
||
%language ElabReflection | ||
|
||
export %hint | ||
smallStrs : Fuel -> Gen MaybeEmpty String | ||
smallStrs _ = elements ["", "a", "bc"] | ||
|
||
export %hint | ||
UsedConstructorDerivator : ConstructorDerivator | ||
UsedConstructorDerivator = LeastEffort | ||
|
||
data X = X1 | X2 Nat | X3 String | ||
|
||
data Y : Nat -> Type where | ||
Y1 : Y 0 | ||
Y2 : X -> Y 1 | ||
Y3 : X -> X -> Y 2 | ||
|
||
genY : Fuel -> (Fuel -> Gen MaybeEmpty String) => Gen MaybeEmpty (n ** Y n) | ||
genY = deriveGen | ||
|
||
main : IO () | ||
main = do | ||
let ci = initCoverageInfo genY | ||
let vs = unGenTryND 100 someStdGen $ genY $ limit 10 | ||
let mc = concatMap fst vs | ||
let ci = registerCoverage mc ci | ||
putStrLn $ show ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
1/1: Building PrintCoverage (PrintCoverage.idr) | ||
|
||
Prelude.Types.Nat covered fully | ||
- S: covered | ||
- Z: covered | ||
|
||
PrintCoverage.X covered fully | ||
- X1: covered | ||
- X2: covered | ||
- X3: covered | ||
|
||
PrintCoverage.Y covered fully | ||
- Y1: covered | ||
- Y2: covered | ||
- Y3: covered |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
rm -rf build | ||
|
||
flock "$1" pack -q install-deps test.ipkg && \ | ||
idris2 --no-color --console-width 0 --no-banner --find-ipkg --check PrintCoverage.idr && \ | ||
echo && \ | ||
pack exec PrintCoverage.idr | ||
|
||
rm -rf build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package a-test | ||
executable = a-test | ||
|
||
depends = deptycheck | ||
|
||
main = PrintCoverage |