From b75b34095ea5f69e82f13191759ce6a0720fcb99 Mon Sep 17 00:00:00 2001 From: Quinn Gil Date: Fri, 3 Dec 2021 23:47:13 -0800 Subject: [PATCH] t Remove number specific tests --- TddLikeYouMeanIt/FizzBuzzTests.cs | 42 ------------------------------- 1 file changed, 42 deletions(-) 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";