Pārlūkot izejas kodu

Add not implemented tests

Lily Carpenter 9 gadi atpakaļ
vecāks
revīzija
59d0fe6270
2 mainītis faili ar 34 papildinājumiem un 0 dzēšanām
  1. 2 0
      NOTES.org
  2. 32 0
      src/test/suite.lisp

+ 2 - 0
NOTES.org

@@ -17,6 +17,8 @@ CLOSED: [2016-01-01 Fri 22:52]
17 17
 *** TODO Create Undead ally characters
18 18
 *** TODO Create enemy characters (human knights?) with basic UI
19 19
 *** TODO Figure out an interesting way to integrate "Darkness"
20
+*** TODO Add unit + property tests for all pure functions
21
+*** TODO Add unit + property tests for all classes
20 22
 *** DONE Fix broken viewport
21 23
 CLOSED: [2016-01-06 Wed 22:24]
22 24
 *** DONE Merge out-of-bounds logic between viewport and mobiles

+ 32 - 0
src/test/suite.lisp

@@ -4,3 +4,35 @@
4 4
         #:check-it))
5 5
 
6 6
 (in-package :crypts-and-corpses-test)
7
+
8
+(defun run-tests ()
9
+  (plan nil)
10
+  (subtest :game-map
11
+    (fail "Not implemented"))
12
+  (subtest :entity
13
+    (fail "Not Implemented"))
14
+  (subtest :tile-entity
15
+    (fail "Not Implemented"))
16
+  (subtest :viewport
17
+    (fail "Not Implemented"))
18
+  (subtest :mobile
19
+    (fail "Not Implemented"))
20
+  (subtest :player-character
21
+    (fail "Not Implemented"))
22
+  (subtest :calc-coord
23
+    (fail "Not Implemented"))
24
+  (subtest :parse-window-size
25
+    (fail "Not Implemented"))
26
+  (subtest :out-of-bounds-p
27
+    (fail "Not Implemented"))
28
+  (subtest :overrun-p
29
+    (fail "Not Implemented"))
30
+  (subtest :calculated-effective-location
31
+    (fail "Not Implemented"))
32
+  (subtest :bad-move-p
33
+    (fail "Not Implemented"))
34
+  (subtest :handle-input
35
+    (fail "Not Implemented"))
36
+  (subtest :create-viewport
37
+    (fail "Not Implemented"))
38
+  (finalize))