Exemple #1
0
        public void SystemOfTwoEquationsTest()
        {
            //equation 4x + 5y = 47
            //         2x + 9y = 69
            var solution = EquationSolver.SystemOfTwoEquations(4, 5, 2, 9, 47, 69);

            Assert.AreEqual(solution, new Vector(3, 7));
        }