public void Method_divide_returns_quotient_of_given_values()
        {
            // arrange - przygotowanie
            //TestMathemacs math = new TestMathemacs();
            var math = new Matematyka();

            // act - wwykonanie testu
            double result = math.Divide(100, 2);

            // assert - sprawdzenie wyników
            Assert.Equal(50, result);
        }
        public void Method_multiply_returns_fraction_of_given_values()
        {
            // arrange - przygotowanie
            //TestMathemacs math = new TestMathemacs();
            var math = new Matematyka();

            // act - wwykonanie testu
            double result = math.Multiply(101, 4.5);

            // assert - sprawdzenie wyników
            Assert.Equal(454.5, result);
        }
        public void Method_add_returns_fraction_of_given_values()
        {
            // arrange - przygotowanie
            //TestMathemacs math = new TestMathemacs();
            var math = new Matematyka();

            // act - wwykonanie testu
            double result = math.Add(33.33, 20);

            // assert - sprawdzenie wyników
            Assert.Equal(53.33, result);
        }
        public void Method_substract_returns_fraction_of_given_values()
        {
            // arrange - przygotowanie
            //TestMathemacs math = new TestMathemacs();
            var math = new Matematyka();

            // act - wwykonanie testu
            double result = math.Substract(50, 20.33);

            // assert - sprawdzenie wyników
            Assert.Equal(29.67, result);
        }
        public void TheoryExamplemultipli(double x, double y, double expected)
        {
            // arrange - przygotowanie
            //TestMathemacs math = new TestMathemacs();
            var math = new Matematyka();

            // act - wwykonanie testu
            double result = math.Multiply(x, y);

            // assert - sprawdzenie wyników
            Assert.Equal(expected, result);
        }