| 17 | typedef FESetting::Ptr FESettingPtr; |
| 18 | |
| 19 | virtual MeshPtr load_mesh(const std::string& filename) { |
| 20 | std::string mesh_file = m_data_dir + filename; |
| 21 | return MeshFactory() |
| 22 | .load_file(mesh_file) |
| 23 | .with_connectivity("all") |
| 24 | .with_attribute("face_normal") |
| 25 | .with_attribute("vertex_normal") |
| 26 | .with_attribute("face_area") |
| 27 | .with_attribute("voxel_volume") |
| 28 | .create(); |
| 29 | } |
| 30 | }; |
| 31 | |
| 32 | TEST_F(FESettingTest, Creation) { |
nothing calls this directly
no test coverage detected