Skip to content

Commit 3592eca

Browse files
committed
updated unit test descriptions
1 parent 6e1154d commit 3592eca

19 files changed

+20
-20
lines changed

tests/always-dynamic-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
(define always-dynamic-tests
8484
(test-suite+
85-
"run always tests"
85+
"unit tests for dynamic always constraints"
8686
(assign-always-test)
8787
(assign-always-required-test)
8888
(struct-always-set-test)

tests/compiled-reactive-thing-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090

9191
(define compiled-reactive-thing-tests
9292
(test-suite+
93-
"run tests for compiled-reactive-thing"
93+
"unit tests for compiled-reactive-thing"
9494
(advance-time-simple)
9595
(button-events)
9696
))

tests/compiled-when-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
(define compiled-when-tests
8484
(test-suite+
85-
"run tests for when in compiled-reactive-thing"
85+
"unit tests for when in compiled-reactive-thing"
8686
(advance-time-one-when)
8787
(advance-time-multiple-whens)
8888
))

tests/compiled-while-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130

131131
(define compiled-while-tests
132132
(test-suite+
133-
"run tests for compiled versions of while"
133+
"unit tests for compiled versions of while"
134134
(one-while)
135135
(one-while-hop-over)
136136
(one-while-track-times)

tests/electrical-things-dynamic-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474

7575
(define electrical-things-dynamic-tests
7676
(test-suite+
77-
"run all electrical things dynamic tests"
77+
"unit tests for dynamic versions of electrical things"
7878
(battery-resistor-fixed-voltage-resistance-test)
7979
(voltage-divider-test)
8080
(battery-resistor-changing-voltage-resistance-test)

tests/electrical-things-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
(define electrical-things-tests
6969
(test-suite+
70-
"run all electrical things tests"
70+
"unit tests for electrical things"
7171
(battery-resistor-fixed-voltage-resistance-test)
7272
(voltage-divider-test)
7373
(parallel-resistors-test)

tests/geothings-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
(define geothings-tests
5656
(test-suite+
57-
"run all geothings tests"
57+
"unit tests for geothings"
5858
(midpoint-test)
5959
))
6060

tests/integral-bad-arg-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
(define integral-bad-arg-tests
5757
(test-suite+
58-
"run tests for integral with bad arguments"
58+
"unit tests for integral with bad arguments"
5959
(both-symbolic-and-numeric)
6060
(dt-with-symbolic)
6161
(dt-alone)

tests/integral-preprocessor-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
(define integral-preprocessor-tests
4949
(test-suite+
50-
"run tests for symbolic integration function"
50+
"unit tests for symbolic integration function"
5151
(atomic-expression-tests)
5252
(compound-expression-tests)
5353
(double-triple-integral-tests)

tests/integral-symbolic-tests.rkt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#lang s-exp rosette
2-
;; unit tests for integral in reactive-thing% using the symbolic option, either explicitly or implicitly
2+
;; unit tests for integral using a symbolic solution
33

44
(require rackunit rackunit/text-ui rosette/lib/roseunit)
55
(require "../core/wallingford.rkt")
@@ -151,7 +151,7 @@
151151

152152
(define integral-symbolic-tests
153153
(test-suite+
154-
"run tests for integral in reactive-thing% using the symbolic option, either explicitly or implicitly"
154+
"unit tests for integral using a symbolic solution"
155155
(integral-in-always)
156156
(integral-in-simple-while-hit-start)
157157
(integral-in-simple-while-miss-start)

tests/integrals-and-events.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
(define integrals-and-events
4343
(test-suite+
44-
"run tests for integrals used in when conditions"
44+
"unit tests for integrals used in when conditions"
4545
(simple-integral-in-event)
4646
))
4747

tests/max-min-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

9898
(define max-min-tests
9999
(test-suite+
100-
"run tests for max and min in reactive-thing"
100+
"unit tests for max and min in reactive-thing%"
101101
(max-min-in-always)
102102
(max-min-in-while)
103103
))

tests/mouse-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126

127127
(define mouse-tests
128128
(test-suite+
129-
"run tests for mouse and button handling"
129+
"unit tests for mouse and button handling"
130130
(button-events)
131131
(button-state)
132132
(mouse-position)

tests/reactive-thing-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
(define reactive-thing-tests
2121
(test-suite+
22-
"run basic tests for reactive-thing"
22+
"basic unit tests for reactive-thing%"
2323
(advance-time-simple)
2424
))
2525

tests/sampling-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124

125125
(define sampling-tests
126126
(test-suite+
127-
"run sampling tests for reactive-thing"
127+
"unit tests for sampling in reactive-thing%"
128128
(sampling-static)
129129
(sampling-temporal-always)
130130
(sampling-with-when)

tests/viewer-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108

109109
(define viewer-tests
110110
(test-suite+
111-
"run tests for viewer"
111+
"unit tests for viewer"
112112
(pulser-test)
113113
(colored-flipper-test)
114114
))

tests/wallingford-core-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181

182182
(define wallingford-core-tests
183183
(test-suite+ ; Rosette specific test-suite that will clear relevant rosette state upon finishing
184-
"run general tests for wallingford"
184+
"general unit tests for wallingford"
185185
(soft-cn-test)
186186
(cn-priorities-test)
187187
(cn-count-test)

tests/when-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
(define when-tests
119119
(test-suite+
120-
"run tests for when in reactive-thing"
120+
"unit tests for when in reactive-thing%"
121121
(advance-time-one-when)
122122
(advance-time-one-when-separate-var)
123123
(advance-time-one-when-separate-var-soft-cn)

tests/while-tests.rkt

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201

202202
(define while-tests
203203
(test-suite+
204-
"run tests for while in reactive-thing"
204+
"unit tests for while in reactive-thing%"
205205
(one-while)
206206
(one-while-hop-over)
207207
(one-while-hop-over-synthesize-interesting-time)

0 commit comments

Comments
 (0)