| 62 | |
| 63 | Y_UNIT_TEST_SUITE(TIteratorTest) { |
| 64 | Y_UNIT_TEST(SmokingTest) { |
| 65 | { |
| 66 | TFlatContainer<int> cont(INIT_SIZE); |
| 67 | SmokingTest(cont); |
| 68 | } |
| 69 | { |
| 70 | TDenseContainer<int, NSet::TStaticValueMarker<-1>> cont(INIT_SIZE); |
| 71 | SmokingTest(cont); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | Y_UNIT_TEST(ConstTest) { |
| 76 | { |
nothing calls this directly
no test coverage detected