diff options
author | Camil Staps | 2016-02-02 19:24:50 +0100 |
---|---|---|
committer | Camil Staps | 2016-02-02 19:24:50 +0100 |
commit | a7d7542dc646a5fd124ef71e71ce260889f1701b (patch) | |
tree | 04ed89503bbb3cc9933273a1326a53ca724c3492 /files/practicum/ZFRemoveAtTest.icl | |
parent | week6 camil: working positioning of lines by putting empties at left and righ... (diff) |
Diffstat (limited to 'files/practicum/ZFRemoveAtTest.icl')
-rw-r--r-- | files/practicum/ZFRemoveAtTest.icl | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/files/practicum/ZFRemoveAtTest.icl b/files/practicum/ZFRemoveAtTest.icl deleted file mode 100644 index 1eca25d..0000000 --- a/files/practicum/ZFRemoveAtTest.icl +++ /dev/null @@ -1,23 +0,0 @@ -module ZFRemoveAtTest
-
-/* Test module ZFRemoveAt
- Voor werken met Gast:
- (*) gebruik Environment 'Gast'
- (*) zet Project Options op 'Basic Values Only'
-*/
-import gast
-import ZFRemoveAt
-
-Start
- = testn 1000
- (\m n ->
- let l = [1 .. (n>>20)] in
- identiek_aan_removeAt m l /\
- True
- )
-
-identiek_aan_removeAt :: Int [Int] -> Property
-identiek_aan_removeAt m l = name "identiek aan removeAt"
- (removeAt m l == removeAt2 m l)
- /\
- (ForEach [1..length l] (\i -> removeAt i l == removeAt2 i l))
|