| 811 | } |
| 812 | |
| 813 | void THashTest::TestDefaultConstructor() { |
| 814 | THashSet<int> set; |
| 815 | |
| 816 | UNIT_ASSERT(set.begin() == set.end()); |
| 817 | |
| 818 | UNIT_ASSERT(set.find(0) == set.end()); |
| 819 | |
| 820 | auto range = set.equal_range(0); |
| 821 | UNIT_ASSERT(range.first == range.second); |
| 822 | } |
| 823 | |
| 824 | void THashTest::TestSizeOf() { |
| 825 | /* This test checks that we don't waste memory when all functors passed to |
nothing calls this directly
no test coverage detected