| 902 | |
| 903 | template<typename T> |
| 904 | class Approx2V2Simple : public Approx2V2<T> { |
| 905 | protected: |
| 906 | void SetUp() { |
| 907 | SUPPORTED_TYPE_CHECK(T); |
| 908 | SimpleTestData data; |
| 909 | this->setTestData(&data.h_gold.front(), data.gold_dims, |
| 910 | &data.h_in.front(), data.in_dims, |
| 911 | &data.h_pos1.front(), data.pos1_dims, |
| 912 | &data.h_pos2.front(), data.pos2_dims); |
| 913 | } |
| 914 | }; |
| 915 | |
| 916 | TYPED_TEST_SUITE(Approx2V2Simple, TestTypes); |
| 917 |
nothing calls this directly
no outgoing calls
no test coverage detected