| 50 | |
| 51 | template<typename T> |
| 52 | class Approx1 : public ::testing::Test { |
| 53 | public: |
| 54 | virtual void SetUp() { |
| 55 | subMat0.push_back(af_make_seq(0, 4, 1)); |
| 56 | subMat0.push_back(af_make_seq(2, 6, 1)); |
| 57 | subMat0.push_back(af_make_seq(0, 2, 1)); |
| 58 | } |
| 59 | vector<af_seq> subMat0; |
| 60 | }; |
| 61 | |
| 62 | // Create a list of types to be tested |
| 63 | typedef ::testing::Types<float, double, cfloat, cdouble> TestTypes; |
nothing calls this directly
no outgoing calls
no test coverage detected