| 18 | protected: |
| 19 | typedef std::shared_ptr<FEMeshAdaptor> FEMeshPtr; |
| 20 | virtual void SetUp() { |
| 21 | TestBase::SetUp(); |
| 22 | |
| 23 | m_cube_tri = load_mesh("cube.obj"); |
| 24 | m_cube_tet = load_mesh("cube.msh"); |
| 25 | m_square = load_mesh("square_2D.obj"); |
| 26 | } |
| 27 | |
| 28 | virtual MeshPtr load_mesh(const std::string& filename) { |
| 29 | std::string mesh_file = m_data_dir + filename; |
nothing calls this directly
no test coverage detected