Package Management
test_interface.h
Go to the documentation of this file.
1 
9 #ifndef TEST_INTERFACE_H
10 #define TEST_INTERFAXCE_H
11 
12 #include "acutest.h"
13 #include "list.h"
14 
15 void test_stringOp(void){
16  char a[20] = "push";
17  TEST_CHECK(_getopID(a) == PUSH);
18  TEST_CHECK(_getopID("merge") == MERGE);
19 }
20 
21 
22 
23 #endif