| Author |
What is a better practice?
|
Alexander Sales
Ranch Hand
Joined: Feb 21, 2011
Posts: 89
|
|
One assert per test?
or
the other way around...
like for example :
or
|
OCPJP 6, OCEWCD Java EE 6
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26499
|
|
Alexander,
The idea of one assertion per test is to be testing one thing in each test. That may require one assertion. In your example, each of the three assertions is independent and makes sense to be in a separate test. The clue is that you have clear "business" types names for each test.
Consider this example:
I'm testing one business case/scenario although I happen to use two assertions. I might even refactor the assertions to another method to show they go together.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
Alexander Sales
Ranch Hand
Joined: Feb 21, 2011
Posts: 89
|
|
yes, that's a good approach. Thanks Jeanne.
|
 |
 |
|
|
subject: What is a better practice?
|
|
|