char *test_fnv1a()
{
    uint32_t hash = Hashmap_fnv1a_hash(&test1);
    assert(hash != 0 && "Bad hash.");

    hash = Hashmap_fnv1a_hash(&test2);
    assert(hash != 0 && "Bad hash.");

    hash = Hashmap_fnv1a_hash(&test3);
    assert(hash != 0 && "Bad hash.");

    return NULL;
}
char *test_fnv1a()
{
	uint32_t hash = Hashmap_fnv1a_hash(&test1);
	mu_assert(hash != 0 , "bad hash");

	hash = Hashmap_fnv1a_hash(&test2);
	mu_assert(hash != 0 , "bad hash");

	hash = Hashmap_fnv1a_hash(&test3);
	mu_assert(hash != 0 , "bad hash");
	
	return NULL;
}