Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question
1  
Under what circumstances do you have a variable expected that 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 literal true. – Eric Lippert Nov 3 '11 at 16:21
@EricLippert: He's trying to fit the pattern that VS autogenerates, which looks exactly like that (Right-click a bool-returning method, then click Create Unit Tests). – SLaks Nov 3 '11 at 16:23

2 Answers

up vote 9 down vote accepted

Using Assert.IsTrue is clearer and less verbose.

share|improve this answer
And the message is better when the test failed. – Toto Nov 3 '11 at 16:12
1  
@Toto: How is Assert.IsTrue failed better? – SLaks Nov 3 '11 at 16:14
i just test. I remember that the message was different but no. Sorry. – Toto Nov 3 '11 at 16:21

You should only use Assert.IsTrue if you're testing something which directly returns a boolean that should always be true.

You should notmassage data to get a boolean for IsTrue; instead, you should call a more relevant method in Assert or CollectionAssert.

In your edited example, you should by all means call Assert.AreEqual instead; it will give you a much nicer message.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.