| 30 | }; |
| 31 | |
| 32 | TEST_F(FESettingTest, Creation) { |
| 33 | MeshPtr mesh = load_mesh("cube.msh"); |
| 34 | FESettingPtr setting = FESettingFactory(mesh) |
| 35 | .with_material("test_material") |
| 36 | .create(); |
| 37 | |
| 38 | ASSERT_EQ(3, setting->get_mesh()->getDim()); |
| 39 | } |
| 40 | |
| 41 | TEST_F(FESettingTest, MissingMaterial) { |
| 42 | MeshPtr mesh = load_mesh("cube.msh"); |
nothing calls this directly
no test coverage detected