/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
34 by Gustav Hartvigsson
* Finnished test suite
1
#include <stdlib.h>
2
#include <stdio.h>
3
#include <malloc.h>
4
#include <string.h>
5
#include <stdint.h>
6
7
#include "test_macros.h"
8
#include "refcount.h"
39 by Gustav Hartvigsson
* Added "check" target for testing.
9
#include "to_string.h"
10
#include "error.h"
34 by Gustav Hartvigsson
* Finnished test suite
11
12
int main  (int argc, char ** argv, char ** argp) {
39 by Gustav Hartvigsson
* Added "check" target for testing.
13
  setup_suite("SSTS");
34 by Gustav Hartvigsson
* Finnished test suite
14
  
39 by Gustav Hartvigsson
* Added "check" target for testing.
15
  test_unit (test_refcount, "Refcount");
16
  test_unit (test_to_string, "To String");
17
  test_unit (test_error, "Error");
34 by Gustav Hartvigsson
* Finnished test suite
18
  
19
  end_suite();
20
}