I am wrting test's and I have heard some people saying to use self.assertFalse rather than assert False. Why is this and are there any advantages to be had?
Thanks
|
I am wrting test's and I have heard some people saying to use Thanks |
||||
|
|
|
There's a difference between an error -- test could not even run -- and a failure -- test code worked but produced the wrong answer. Errors are a serious problem with your code. Failures are just failures that need to be fixed. |
|||
|
|
If you run
You get the same logging information, the same failure:
The reason both are handled the same is because
When you say When you say Since these exceptions are the same, there is no apparent difference.
Even though (without the -O flag) the result is the same, |
||||
|
|
One point the answers so far have failed to mention is that there are several test frameworks (e.g. py.test and nose) that use python's introspection magic to allow you to write unit tests like so:
without requiring any of the unittest boilerplate you saw above. So in some cases it can boil down to just a framwork/stylistic issue. |
|||