public void Taschenrechner_Add_Int32MinValue_and_NEG1_throws_OverflowException()
        {
            // Arrange
            var t = new TaschenrechnerLib.Taschenrechner();

            // Act und Assert
            Assert.ThrowsException <OverflowException>(() => t.Add(Int32.MinValue, -1));
        }
        public void Taschenrechner_Add_0_and_0_results_0()
        {
            // Arrange
            var t = new TaschenrechnerLib.Taschenrechner();
            // Act
            int erg = t.Add(0, 0);

            // Assert
            Assert.AreEqual(0, erg); // float wäre da bestimmt interessant ( 0.1 + 0.2 )
        }
        public void Taschenrechner_Add_5_and_3_results_8()
        {
            // Arrange
            var t = new TaschenrechnerLib.Taschenrechner();
            // Act
            int erg = t.Add(5, 3);

            // Assert
            Assert.AreEqual(8, erg);
        }