Skip to content

Commit

Permalink
t Remove number specific tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyzxs committed Dec 4, 2021
1 parent 7cbbabf commit b75b340
Showing 1 changed file with 0 additions and 42 deletions.
42 changes: 0 additions & 42 deletions TddLikeYouMeanIt/FizzBuzzTests.cs
Expand Up @@ -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";
Expand Down

0 comments on commit b75b340

Please sign in to comment.