meta: add support for simple unit test
This commit is contained in:
20
test/name-map.c
Normal file
20
test/name-map.c
Normal file
@@ -0,0 +1,20 @@
|
||||
#include <mie/name.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
struct mie_name_map *map = mie_name_map_create();
|
||||
struct mie_name n1;
|
||||
struct mie_name n2;
|
||||
struct mie_name n3;
|
||||
|
||||
mie_name_map_put(map, &n1, "tmp");
|
||||
mie_name_map_put(map, &n2, "tmp");
|
||||
mie_name_map_put(map, &n3, "tmp");
|
||||
|
||||
printf("%s\n", n1.n_str);
|
||||
printf("%s\n", n2.n_str);
|
||||
printf("%s\n", n3.n_str);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user