bzr branch
http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#include <stdlib.h> #include <stdio.h> #include <malloc.h> #include <string.h> #include <stdint.h> #include "test_macros.h" #include "refcount.h" #include "to_string.h" #include "error.h" #include "SimpleTypeSystem.h" int main (int argc, char ** argv, char ** argp) { setup_suite("SSTS"); test_unit (test_refcount, "Refcount"); test_unit (test_to_string, "To String"); test_unit (test_error, "Error"); end_suite(); } |