| 100 | static constexpr BoutReal this_tolerance{1e-13}; |
| 101 | |
| 102 | TEST_F(GridFromOptionsTest, HasVar) { |
| 103 | EXPECT_TRUE(griddata->hasVar("f")); |
| 104 | EXPECT_FALSE(griddata->hasVar("non-existent")); |
| 105 | } |
| 106 | |
| 107 | TEST_F(GridFromOptionsTest, GetString) { |
| 108 | std::string result{"wrong"}; |
nothing calls this directly
no test coverage detected