We are currently converting some code that was using Assert.IsTrue()
, Assert.AreEqual()
, Assert.IsNotNull()
, etc. The basic unit test assert Library for C#
We want to use FluentAssertions, like value.Should().BeNull().
I'm stuck on a few tests using Assert.Fail()
in some locations. What should I use to efficiently replace those, since we want to do away with every single "Assert.*", and I can't find an equivalent in FluentAssertions?
Here is an example
[TestMethod, TestCategory("ImportantTest")]
public void MethodToTest_Circumstances_ExpectedResult()
{
// Arrange
var variable1 = new Type1() { Value = "hello" };
var variable2 = new Type2() { Name = "Bob" };
// Act
try
{
MethodToTest(variable1, variable2);
// This method should have thrown an exception
Assert.Fail();
}
catch (Exception ex)
{
ex.Should().BeOfType<DataException>();
ex.Message.Should().Be(Constants.DataMessageForMethod);
}
// Assert
// test that variable1 was changed by the method
variable1.Should().NotBeNull();
variable1.Value.Should().Be("Hello!");
// test that variable2 is unchanged because the method threw an exception before changing it
variable2.Should().NotBeNull();
variable2.Name.Should().Be("Bob");
}
Assert.Fail
is used in a code path that was reached because of a problem likeif(value == null) { Assert.Fail("should not be null");}
so how you convert them is completely based on the circumstances that lead the code to reach them. – SlotnickAssert.Throws
to start with, instead of thetry/Assert.Fail/catch
approach. – Jedediah