| 968 | class Approx1V2Simple : public Approx1V2<T> { |
| 969 | protected: |
| 970 | void SetUp() { |
| 971 | SUPPORTED_TYPE_CHECK(T); |
| 972 | SimpleTestData data; |
| 973 | this->setTestData(&data.h_gold.front(), data.gold_dims, |
| 974 | &data.h_in.front(), data.in_dims, &data.h_pos.front(), |
| 975 | data.pos_dims); |
| 976 | } |
| 977 | }; |
| 978 | |
| 979 | TYPED_TEST_SUITE(Approx1V2Simple, TestTypes); |
nothing calls this directly
no test coverage detected