When testing a method that is of return type bool.
Should you have:
expected = true;
Assert.AreEqual(expected, actual);
or
Assert.IsTrue(actual);
I know they both produce the same outcome, but which is better practise to use?
EDIT: For example, if I do AreEqual, is it not essentially the same as doing IsTrue on a method that returns a string a la below:
string expected = “true”;
String actual = test.testMethod(data)
Bool test;
if expected.equals(actual)
test = true;
else
test = false;
Assert.IsTrue(test);
expectedthat you know is always true? That is, if you know that it is always true then why have a variable in the first place? Just use the literaltrue. – Eric Lippert Nov 3 '11 at 16:21