aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src/coding/test-driven-development.md
blob: 56c1bf153071c008e06ec9f99e6e1dd6be2a89d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Test driven development (TDD)

The suggested technique for bruijn development is the TDD method. When
creating functions, we suggest the following procedure:

-   Write a comment, a type signature, and the head of the function

``` bruijn
# returns the item at index in a list, starting from 0
index y [[[rec]]] ⧗ (List a) → Number → a
```

-   Write several tests including edge cases

``` bruijn
# 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
    [`:watch`{.bruijn} repl command](REPL.md#watch))
-   Refactor and clean up the definition

``` bruijn
# 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)
```