public void CalculateTest(double firstValue, double secondValue, double expected)
        {
            var calculator   = new Addition();
            var actualResult = calculator.Calculator(firstValue, secondValue);

            Assert.AreEqual(7, actualResult);
        }