| 45 | }; |
| 46 | |
| 47 | TEST_F(ZSparseMatrixTest, Copy) { |
| 48 | ZSparseMatrix m2 = m_matrix; |
| 49 | ASSERT_SPARSE_MATRIX_EQ(m_matrix, m2); |
| 50 | } |
| 51 | |
| 52 | TEST_F(ZSparseMatrixTest, ImportCSC) { |
| 53 | const size_t inner_size = m_matrix.get_inner_size(); |
nothing calls this directly
no test coverage detected