aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src/coding/test-driven-development.md
diff options
context:
space:
mode:
authorMarvin Borner2023-11-06 18:50:35 +0100
committerMarvin Borner2023-11-06 18:50:35 +0100
commit1f7231153c172500f1073ddb22ec911379f83a07 (patch)
treef6914c30fcbeaf44c12b405eaa09065fb8203ac7 /docs/wiki_src/coding/test-driven-development.md
parent9d722a0b6138827de743f9fe4acbf3f2c1830bb0 (diff)
Improved wiki and reduced readme
Diffstat (limited to 'docs/wiki_src/coding/test-driven-development.md')
-rw-r--r--docs/wiki_src/coding/test-driven-development.md46
1 files changed, 24 insertions, 22 deletions
diff --git a/docs/wiki_src/coding/test-driven-development.md b/docs/wiki_src/coding/test-driven-development.md
index f62c448..56c1bf1 100644
--- a/docs/wiki_src/coding/test-driven-development.md
+++ b/docs/wiki_src/coding/test-driven-development.md
@@ -6,21 +6,22 @@ creating functions, we suggest the following procedure:
- Write a comment, a type signature, and the head of the function
``` bruijn
-# measures the length of a list
-length y [[[rec]]] (+0) ⧗ (List a) → Number
+# returns the item at index in a list, starting from 0
+index y [[[rec]]] ⧗ (List a) → Number → a
```
-- Write several tests including all edge cases
+- Write several tests including edge cases
``` bruijn
-# measures the length of a list
-length y [[[rec]]] (+0) ⧗ (List a) → Number
-
-:test (length empty) ((+0))
-:test (length "a") ((+1))
-:test (length ({}empty)) ((+1))
-:test (length (empty : {}empty)) ((+2))
-:test (length ("abc")) ((+3))
+# returns the item at index in a list, starting from 0
+index y [[[rec]]] ⧗ (List a) → Number → a
+
+:test (empty !! (+0)) (empty)
+:test ({}(+1) !! (+0)) ((+1))
+:test (((+1) : ((+2) : {}(+3))) !! (+0)) ((+1))
+:test (((+1) : ((+2) : {}(+3))) !! (+2)) ((+3))
+:test (((+1) : ((+2) : {}(+3))) !! (-1)) (empty)
+:test (((+1) : ((+2) : {}(+3))) !! (+3)) (empty)
```
- Finish the implementation until all tests pass (e.g. using the
@@ -28,15 +29,16 @@ length y [[[rec]]] (+0) ⧗ (List a) → Number
- Refactor and clean up the definition
``` bruijn
-# measures the length of a list
-length y [[[rec]]] (+0) ⧗ (List a) → Number
- rec 0 [[[case-inc]]] case-end
- case-inc 5 ++4 1
- case-end 1
-
-:test (length empty) ((+0))
-:test (length "a") ((+1))
-:test (length ({}empty)) ((+1))
-:test (length (empty : {}empty)) ((+2))
-:test (length ("abc")) ((+3))
+# returns the item at index in a list, starting from 0
+index y [[[rec]]] ⧗ (List a) → Number → a
+ rec 0 [[[case-index]]] case-end
+ case-index =?4 2 (5 --4 1)
+ case-end empty
+
+:test (empty !! (+0)) (empty)
+:test ({}(+1) !! (+0)) ((+1))
+:test (((+1) : ((+2) : {}(+3))) !! (+0)) ((+1))
+:test (((+1) : ((+2) : {}(+3))) !! (+2)) ((+3))
+:test (((+1) : ((+2) : {}(+3))) !! (-1)) (empty)
+:test (((+1) : ((+2) : {}(+3))) !! (+3)) (empty)
```