cs11dotnet7/vscode/Chapter04/Ch04Ex02PrimeFactorsTests/PrimeFactorsUnitTests.cs
2022-05-10 08:15:18 +01:00

92 lines
1.7 KiB
C#

using Ch04Ex02PrimeFactorsLib;
namespace Ch04Ex02PrimeFactorsTests
{
public class PrimeFactorsUnitTests
{
[Fact]
public void PrimeFactorsOf40()
{
// arrange
int number = 40;
string expected = "5 x 2 x 2 x 2";
// act
string actual = Primes.PrimeFactors(number);
// assert
Assert.Equal(expected, actual);
}
[Fact]
public void PrimeFactorsOf99()
{
// arrange
int number = 99;
string expected = "11 x 3 x 3";
// act
string actual = Primes.PrimeFactors(number);
// assert
Assert.Equal(expected, actual);
}
[Fact]
public void PrimeFactorsOf519()
{
// arrange
int number = 519;
string expected = "173 x 3";
// act
string actual = Primes.PrimeFactors(number);
// assert
Assert.Equal(expected, actual);
}
[Fact]
public void PrimeFactorsOf997()
{
// arrange
int number = 997;
string expected = "997";
// act
string actual = Primes.PrimeFactors(number);
// assert
Assert.Equal(expected, actual);
}
[Fact]
public void PrimeFactorsOf1000()
{
// arrange
int number = 1000;
string expected = "5 x 5 x 5 x 2 x 2 x 2";
// act
string actual = Primes.PrimeFactors(number);
// assert
Assert.Equal(expected, actual);
}
[Fact]
public void PrimeFactorsOf1001()
{
// arrange
int number = 1001;
string expected = "number must be between 1 and 1000.";
// act
string actual = Primes.PrimeFactors(number);
// assert
Assert.Equal(expected, actual);
}
}
}