diff --git a/TddLikeYouMeanIt/FizzBuzzTests.cs b/TddLikeYouMeanIt/FizzBuzzTests.cs index 649c703..d7c8016 100644 --- a/TddLikeYouMeanIt/FizzBuzzTests.cs +++ b/TddLikeYouMeanIt/FizzBuzzTests.cs @@ -51,48 +51,6 @@ public void GivenInputMultipleOf3ReturnsFizz() actual.Should().Be(expected); } - [TestMethod] - public void GivenInput3ReturnsFizz() - { - //ARRANGE - string expected = "Fizz"; - int sourceInput = 1 * 3; - - //ACT - string actual = Transform(sourceInput); - - //ASSERT - actual.Should().Be(expected); - } - - [TestMethod] - public void GivenInput6ReturnsFizz() - { - //ARRANGE - string expected = "Fizz"; - int sourceInput = 2 * 3; - - //ACT - string actual = Transform(sourceInput); - - //ASSERT - actual.Should().Be(expected); - } - - [TestMethod] - public void GivenInput12ReturnsFizz() - { - //ARRANGE - string expected = "Fizz"; - int sourceInput = 4 * 3; - - //ACT - string actual = Transform(sourceInput); - - //ASSERT - actual.Should().Be(expected); - } - public string Transform(int source) { if (0 == source % 3) return "Fizz";