| Author |
@After annotation of Junit
|
Buddhika Mawella
Ranch Hand
Joined: Jan 06, 2011
Posts: 36
|
|
Hi,
I am new to Junit and trying to execute following test. What I have understood is that if a method of a Junit test case is annotated with @After,
that method should run after every test method. I created below test class with Junit and it only print "inside @Test" when running. But according to my knowledge that should print both "inside @Test" and "inside @After". So whats wrong with this? help me.
Thanks.
|
BM
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26168
|
|
Buddhika,
Since you are extending TestCase, JUnit is treating it as a JUnit 3.8 test. Which looks for setUp/tearDown/test* named methods.
If you remove the "extends TestCase", JUnit will see it as a JUnit 4 test and do what you expect.
|
[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
|
 |
Buddhika Mawella
Ranch Hand
Joined: Jan 06, 2011
Posts: 36
|
|
Thanks Jeanne. Got it.
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: @After annotation of Junit
|
|
|