| 43 | |
| 44 | template<typename T> |
| 45 | class Approx2 : public ::testing::Test { |
| 46 | public: |
| 47 | virtual void SetUp() { |
| 48 | SUPPORTED_TYPE_CHECK(T); |
| 49 | subMat0.push_back(af_make_seq(0, 4, 1)); |
| 50 | subMat0.push_back(af_make_seq(2, 6, 1)); |
| 51 | subMat0.push_back(af_make_seq(0, 2, 1)); |
| 52 | } |
| 53 | vector<af_seq> subMat0; |
| 54 | }; |
| 55 | |
| 56 | // create a list of types to be tested |
| 57 | typedef ::testing::Types<float, double, cfloat, cdouble> TestTypes; |
nothing calls this directly
no outgoing calls
no test coverage detected