/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to tests/main.c

  • Committer: Gustav Hartvigsson
  • Date: 2015-10-28 14:45:22 UTC
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: gustav.hartvigsson@gmail.com-20151028144522-fo54z73ssjex0emw
* SMap seems to be broken... Or could it be SObject's Callback stuff? Or SLinkedList?

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#include "to_string.h"
10
10
#include "error.h"
11
11
#include "dynamic_array.h"
 
12
#include "callback.h"
12
13
 
13
14
 
14
15
int main  (int argc, char ** argv, char ** argp) {
15
 
  setup_suite("SSTS");
16
 
  
 
16
  setup_suite ("SSTS");
 
17
 
17
18
  test_unit (test_refcount, "Refcount");
18
19
  test_unit (test_to_string, "To String");
19
20
  test_unit (test_error, "Error");
20
21
  test_unit (test_dynamic_array, "Dynamic Array");
21
 
  
22
 
  end_suite();
 
22
  test_unit (test_callback, "Callback");
 
23
  test_unit (test_thread, "Threading");
 
24
 
 
25
  end_suite ();
23
26
}