Extension trait to add missing methods to TestFixture
| 16 | |
| 17 | // Extension trait to add missing methods to TestFixture |
| 18 | trait TestFixtureExtensions { |
| 19 | fn assert_numeric_range(&self, query: &str, column: &str, min: f64, max: f64) -> f64; |
| 20 | } |
| 21 | |
| 22 | impl TestFixtureExtensions for TestFixture { |
| 23 | fn assert_numeric_range(&self, query: &str, column: &str, min: f64, max: f64) -> f64 { |
nothing calls this directly
no outgoing calls
no test coverage detected