/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

* Merge callback system fixes

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
 
 
 
12
#include "callback.h"
 
13
#include "linked_list.h"
 
14
#include "thread.h"
 
15
#include "map.h"
13
16
 
14
17
int main  (int argc, char ** argv, char ** argp) {
15
 
  setup_suite("SSTS");
 
18
  setup_suite ("SSTS");
16
19
  
17
20
  test_unit (test_refcount, "Refcount");
18
21
  test_unit (test_to_string, "To String");
19
22
  test_unit (test_error, "Error");
20
23
  test_unit (test_dynamic_array, "Dynamic Array");
21
 
  
22
 
  end_suite();
 
24
  test_unit (test_linked_list, "Linked List");
 
25
  test_unit (test_map, "Map");
 
26
  test_unit (test_callback, "Callback");
 
27
  //test_unit (test_thread, "Threading");
 
28
 
 
29
  end_suite ();
23
30
}