MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / Approx2

Class Approx2

test/approx2.cpp:45–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43
44template<typename T>
45class 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
57typedef ::testing::Types<float, double, cfloat, cdouble> TestTypes;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected