[test] Add test for hb_set_get_min() bug

Failing now.

Bug 64476 - Typo in hb_set_t.get_min()
This commit is contained in:
Behdad Esfahbod 2013-05-14 15:30:17 -04:00
parent a8bf0e91f1
commit dfbd115e6c
1 changed files with 4 additions and 0 deletions

View File

@ -64,6 +64,10 @@ test_set_basic (void)
hb_set_clear (s);
test_empty (s);
hb_set_add (s, 33000);
test_not_empty (s);
hb_set_clear (s);
hb_set_add_range (s, 10, 29);
test_not_empty (s);
g_assert (hb_set_has (s, 13));