| 12 | // |
| 13 | |
| 14 | class ArrayTest : public ::testing::Test { |
| 15 | public: |
| 16 | ArrayTest() { Array<double>::useStore(true); } |
| 17 | // Note: Calling cleanup() disables the store |
| 18 | virtual ~ArrayTest() = default; |
| 19 | }; |
| 20 | |
| 21 | TEST_F(ArrayTest, ArraySize) { |
| 22 | Array<double> a(5); |
nothing calls this directly
no outgoing calls
no test coverage detected