When I'm testing a void method there is nothing to assert.For example a CreateSomething method. I know I could call in the test method an other method like FindSomething,but anyway, if there is (in the create method) an error it will show up. So it's a good practice to call an assertion in every method or i'm fine sometimes without an assertion ?
|
2
|
|
|
|
|
|
Not necessarily an AssertBut your test code should do at least one of these:
So it's values, actions and errors that you should be checking. Sometimes just one of these, sometimes you can't do it without a combination. |
||||||||||||
|
|
|
It is not necessary to have an |
||
|
|
|
|
Void methods oftentimes change the state of an instance. In that case, your test method should assert that the expected state is present after the call. I.e. you need to assert on the state of relevant members. Void methods with no side effects can also be tested using mock object. In this case you'll test that the method makes the expected calls on the mock object. Having said that function like methods should be preferred IMO as they are easier to reason about and easier to test, but that is just my opinion. |
||||||
|
|
|
Well, if you only need to test that the method runs... wrap it in try and catch, and if it fails for some reason (and you can't assert anything) - assert(false) in the catch, or if you expect an exception - use ExpectedException... |
||
|
|
|
|
You should definitely assert at least one fact in every test. Simply because your unit test framework will count the number of assertions, and the measure number of tests/number of assertions can give a good first impression about a test suite. If there is seemingly nothing you can assert: All unit test frameworks that I know have |
||||
|
|
|
So, what is the purpose of the method? Answering this question helps to find what is to be asserted. If the anwser is actually nothing, you should be able to remove that method from your code with no impact. Implementing the test code for covering this assertion is another problem which may or may not be easy or relevant given your development environment or the constraints of the project. |
|||
|
|
|
|
Of Course there is something like Assert.Throws/Assert.DoesNotThrow in MSTest there are Assert.Fail() and AssertFailedException() |
||
|
|
|
|
Make sure it fails if what your testing is broken. This can be witnessed by:
Maybe there are some exceptions to this, but I can't think of any. One principal of TDD is important here:
If you do that, you're guaranteed it's a good test. Some people claim that each test should have one, and only one, assert... but that's a different question. |
||
|
|
