Minor additions to unit test of data structures
This commit is contained in:
parent
4d260e4a7b
commit
f1bab48fb5
1 changed files with 7 additions and 0 deletions
|
@ -148,6 +148,13 @@ int main(void) {
|
|||
}
|
||||
}
|
||||
|
||||
key = 5;
|
||||
CHECK_TRUE(simple_archiver_hash_map_get(hash_map, &key, sizeof(int)) == NULL);
|
||||
key = 10;
|
||||
CHECK_TRUE(simple_archiver_hash_map_get(hash_map, &key, sizeof(int)) != NULL);
|
||||
key = 15;
|
||||
CHECK_TRUE(simple_archiver_hash_map_get(hash_map, &key, sizeof(int)) == NULL);
|
||||
|
||||
simple_archiver_hash_map_free(&hash_map);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue