| 18 | }; |
| 19 | |
| 20 | class ExpressionParserTest : public ::testing::Test { |
| 21 | public: |
| 22 | ~ExpressionParserTest() override = default; |
| 23 | ExpressionParserSubClass parser; |
| 24 | std::vector<double> x_array = {-1., 0., 1., 5., 10., 3.14e8}; |
| 25 | std::vector<double> y_array = {-1., 0., 1., 5., 10., 3.14e8}; |
| 26 | std::vector<double> z_array = {-1., 0., 1., 5., 10., 3.14e8}; |
| 27 | std::vector<double> t_array = {-1., 0., 1., 5., 10., 3.14e8}; |
| 28 | WithQuietOutput quiet_warn{output_warn}; |
| 29 | }; |
| 30 | |
| 31 | Context LegacyContext(BoutReal x, BoutReal y, BoutReal z, BoutReal t) { |
| 32 | return Context().set("x", x, "y", y, "z", z, "t", t); |
nothing calls this directly
no outgoing calls
no test coverage detected