-
Notifications
You must be signed in to change notification settings - Fork 0
/
hw4test.rkt
61 lines (44 loc) · 2.21 KB
/
hw4test.rkt
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#lang racket
;; Programming Languages Homework4 Simple Test
;; Save this file to the same directory as your homework file
;; These are basic tests. Passing these tests does not guarantee that your code will pass the actual homework grader
;; Be sure to put your homework file in the same folder as this test file.
;; Uncomment the line below and change HOMEWORK_FILE to the name of your homework file.
;;(require "HOMEWORK_FILE")
(require "hw4.rkt")
(require rackunit)
;; Helper functions
(define ones (lambda () (cons 1 ones)))
(define a 2)
(define tests
(test-suite
"Sample tests for Assignment 4"
; sequence test
(check-equal? (sequence 1 10 2) (list 1 3 5 7 9) "Sequence test")
; string-append-map test ;(string-append (list "hi" "hello" "no") "hell ")
(check-equal? (string-append-map
(list "dan" "dog" "curry" "dog2")
".jpg") '("dan.jpg" "dog.jpg" "curry.jpg" "dog2.jpg") "string-append-map test")
; list-nth-mod test
(check-equal? (list-nth-mod (list 0 1 2 3 4) 2) 2 "list-nth-mod test")
; stream-for-n-steps test
(check-equal? (stream-for-n-steps ones 2) (list 1 1) "stream-for-n-steps test")
; funny-number-stream test
(check-equal? (stream-for-n-steps funny-number-stream 16) (list 1 2 3 4 -5 6 7 8 9 -10 11 12 13 14 -15 16) "funny-number-stream test")
; dan-then-dog test
(check-equal? (stream-for-n-steps dan-then-dog 1) (list "dan.jpg") "dan-then-dog test")
; stream-add-zero test
(check-equal? (stream-for-n-steps (stream-add-zero ones) 1) (list (cons 0 1)) "stream-add-zero test")
; cycle-lists test
(check-equal? (stream-for-n-steps (cycle-lists (list 1 2 3) (list "a" "b")) 3) (list (cons 1 "a") (cons 2 "b") (cons 3 "a"))
"cycle-lists test")
; vector-assoc test
(check-equal? (vector-assoc 4 (vector (cons 2 1) (cons 3 1) (cons 4 1) (cons 5 1))) (cons 4 1) "vector-assoc test")
; cached-assoc tests
(check-equal? ((cached-assoc (list (cons 1 2) (cons 3 4)) 3) 3) (cons 3 4) "cached-assoc test")
; while-less test
;(check-equal? (while-less 7 do (begin (set! a (+ a 1)) a)) #t "while-less test")
))
(require rackunit/text-ui)
;; runs the test
(run-tests tests)