| 67 | "iterators implies const_iterators"); |
| 68 | |
| 69 | TEST(ContainerWrapper, constructWithVariedArguments) { |
| 70 | ASSERT_NO_THROW((MyTestContainerWrapper<svec>{})); |
| 71 | ASSERT_NO_THROW( |
| 72 | (MyTestContainerWrapper<svec, policies::const_iterators>{})); |
| 73 | ASSERT_NO_THROW((MyTestContainerWrapper<svec, policies::iterators>{})); |
| 74 | |
| 75 | ASSERT_NO_THROW((MyTestContainerWrapper<svec, policies::size>{})); |
| 76 | ASSERT_NO_THROW((MyTestContainerWrapper<svec, policies::size, |
| 77 | policies::const_iterators>{})); |
| 78 | ASSERT_NO_THROW( |
| 79 | (MyTestContainerWrapper<svec, policies::size, policies::iterators>{})); |
| 80 | } |
nothing calls this directly
no outgoing calls
no test coverage detected