コード例 #1
0
        public void GeometricTest(double firstValue, double secondValue, double expected)
        {
            var calculator   = new Geometric();
            var actualResult = calculator.Calculate(firstValue, secondValue);

            Assert.AreEqual(expected, actualResult);
        }