/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: 2016-01-26 12:26:20 UTC
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: gustav.hartvigsson@gmail.com-20160126122620-oul2w8c1pgen0dbx
* Fixed SMap, for the time being...

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#include "callback.h"
13
13
#include "linked_list.h"
14
14
#include "thread.h"
 
15
#include "map.h"
15
16
 
16
17
int main  (int argc, char ** argv, char ** argp) {
17
18
  setup_suite ("SSTS");
21
22
  test_unit (test_error, "Error");
22
23
  test_unit (test_dynamic_array, "Dynamic Array");
23
24
  test_unit (test_linked_list, "Linked List");
 
25
  test_unit (test_map, "Map");
24
26
  //test_unit (test_callback, "Callback");
25
27
  //test_unit (test_thread, "Threading");
26
28