| 11 | #include <testHelpers.hpp> |
| 12 | |
| 13 | TEST(Sparse, ReadRealMTXFile) { |
| 14 | af::array out; |
| 15 | std::string file(MTX_TEST_DIR "HB/bcsstm02/bcsstm02.mtx"); |
| 16 | ASSERT_TRUE(mtxReadSparseMatrix(out, file.c_str())); |
| 17 | } |
| 18 | |
| 19 | TEST(Sparse, ReadComplexMTXFile) { |
| 20 | af::array out; |
nothing calls this directly
no test coverage detected