This repository has been archived by the owner on Jan 22, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTODO
43 lines (40 loc) · 1.74 KB
/
TODO
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
Legend:
[ ] not done
[+] in progess
[X] done!
### Implementation
[+] Simple example about using Testly
[ ] Add more documentation about use of the library
[X] Reduced interface in lib/testly.bi
### Internals
[X] Linked List
[X] TestCases in Suite
[X] Suites Collection
[X] Structure
[X] Suite (simple basic information about the suite)
[X] Test (the same applies to the test
[X] Assertion
[X] Helpers that register and add test to each suite
[+] Helpers
[X] Context used to reference current Suite and Test (CURRENT_* ptr)
[+] defines for fast access (without using namespace)
[+] more defines about kind of assertions
[X] Enhance output and report of failures
[X] Correct assertion logging (FailureLog)
### Self-Testing
[X] Eat our own food!
[X] mechanism to exclude a suite from the results (useful to test failed suites)
[X] create internal helpers to access count and information about suites, tests and results.
[X] Perform testing
[X] Based on TESTMAP
[X] Evaluate if Suites and Tests are defined and could be selected (select_*)
[X] Evaluate if the names of the fixture suites match
[X] Evaluate if the fixture suites pass both setup and teardown process.
[X] Evaluate failures and errors counts due setup and teardown failures.
[X] Evaluate number of assertions performed in each fixture suite and compare them
[X] Evaluate the success or failure of the test that comprises each suite in the fixture.
[X] Evaluate the quantity of tests of each suite.
[X] Evaluate if assertions inside setup/teardown work without glitches.
[X] Functional Testing
[X] Test Internal Linked List works.
[X] Test if helpers do what is supposed to do.