diff options
Diffstat (limited to 'lib/core/tests/math.cpp')
| -rw-r--r-- | lib/core/tests/math.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/core/tests/math.cpp b/lib/core/tests/math.cpp new file mode 100644 index 0000000..738d637 --- /dev/null +++ b/lib/core/tests/math.cpp @@ -0,0 +1,20 @@ +#include <forstio/test/suite.hpp> + +#include "../c++/math/n_linear.hpp" + +namespace { +namespace sch { +using namespace saw::schema; +} + +SAW_TEST("Math 2-Linear"){ + using namespace kel; + + saw::data<sch::FixedArray<sch::Vector<sch::Float64,2u>,32u,32u>> field; + + saw::data<sch::Vector<sch::Float64,2u>> pos; + + SAW_EXPECT(true, "Default true check"); +} + +} |
