/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-04-07 19:55:55 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150407195555-i1x12gy9rsks60a9
* Finnished test suite

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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"
 
9
 
 
10
int main  (int argc, char ** argv, char ** argp) {
 
11
  setup_suite();
 
12
  
 
13
  test_unit (test_refcount() , "Refcount");
 
14
  
 
15
  end_suite();
 
16
}