Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit f50f041e authored by Michael KRISPER's avatar Michael KRISPER
Browse files

removed testcase for QuadraticEquationFit - not implemented anymore

parent 24c00bdd
No related branches found
No related tags found
No related merge requests found
......@@ -169,15 +169,5 @@ namespace TUGraz.VectoCore.Tests.Utils
Assert.AreEqual(0.431535, k, 1e-6);
}
[TestCase]
public void TestQuadraticEquationFit() {
var entries = new[] { (0d, 1d), (1, 0), (2, -1), (3, 1) };
var (a, b, c) = VectoMath.FitQuadraticEquation(entries);
Assert.AreEqual(0.75, a);
Assert.AreEqual(-2.35, b);
Assert.AreEqual(1.15, c);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment