Skip to content

Instantly share code, notes, and snippets.

@e0
Created April 23, 2011 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save e0/938846 to your computer and use it in GitHub Desktop.
Save e0/938846 to your computer and use it in GitHub Desktop.
int init_suite(void) {
return 0;
}
int clean_suite(void) {
return 0;
}
/* Test cases */
void test_init_list(void)
{
position a, b;
a.x = 1;
a.y = 1;
b.x = 9;
b.y = 5;
// init_path(a, b);
CU_ASSERT(a.x == 1);
CU_ASSERT(a.y == 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment