test: move all module tests to the test/ directory
This commit is contained in:
11
test/ds/simple.c
Normal file
11
test/ds/simple.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <blue/ds/string.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
b_string *string = B_CSTR("Hello, world!");
|
||||
printf("string object = ");
|
||||
b_object_to_string(string, b_stdout);
|
||||
printf("\n");
|
||||
b_string_unref(string);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user