| 9 | |
| 10 | namespace { |
| 11 | void ValueIsCorrect(const double value, const double expectedValue, double possibleRelativeError) { |
| 12 | UNIT_ASSERT_DOUBLES_EQUAL(value, expectedValue, possibleRelativeError * expectedValue); |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | Y_UNIT_TEST_SUITE(TLinearRegressionTest) { |