Today I saw a JUnit test case with a java assertion instead of the JUnit assertions - What are the best practices in this respect?
|
feedback
|
|
In JUnit4 the exception (actually Error) thrown by a JUnit assert is is the same the error thrown in by the java That being said, asserts have to run with a special flag in the JVM, causing many test to appear to pass just because someone forgot to configure the system with that flag when the JUnit tests were run - not good. In general, because of this, I would argue that using the JUnit The real purpose of the assert keyword in java is to be able to turn it off without runtime penalty. That doesn't apply to unit tests. | |||
|
feedback
|
|
I prefer JUnit assertions as they offer a richer API than the built-in | |||
|
feedback
|
|
when Java didn't have once Java had it, nobody uses it. | |||
|
feedback
|
|
When a test fails you get more infomation.
vs
you can get even more info if you add the message argument to | |||
|
feedback
|
|
I would say if you are using JUnit you should use the JUnit assertions. | |||||||
feedback
|
|
This may not apply if you exclusively use stuff that's shiny and new, but assert was not introduced into Java until 1.4SE. Therefore, if you must work in an environment with older technology, you may lean towards JUnit for compatibility reasons. | |||
|
feedback
|
|
I'd say use JUnit asserts in test cases, and use java's assert in the code. In other words, real code shall never have JUnit dependencies, as obvious, and if it's a test, it should use the JUnit variations of it, never the assert. | |||
|
feedback
|