| Author |
Mockito versus Powermock
|
Rene Ummels
Greenhorn
Joined: Feb 12, 2010
Posts: 11
|
|
Hi Tomek,
I use the following rule for usage of Mockito versus Powermock. In our company we use Mockito.
Rule: Do not use Powermock, unless it is really needed (think!). Use it per maven sub-project and then use it consistently (not using both Mockito and Powermock).
- Powermock shall never be used to hide bad design.
- Powermock is allowed in testing Abstract Factory.
- The Sonar check concerning final methods / classes is nonsense; how can you ever be sure that you are never going to extend a class or method? Conclusion: Do not use Powermock to test existing final methods or classes in your code but remove the final keyword.
Do you have any suggestions on my rule?
Any suggestions (adding text, removing text, changing text) or sharing thoughts are appreciated.
kind regards,
Rene Ummels
|
 |
Billy Tsai
Ranch Hand
Joined: May 23, 2003
Posts: 1296
|
|
are Mockito and TestNG two totally different testing frameworks?
what are their main differenences?
|
 |
Rene Ummels
Greenhorn
Joined: Feb 12, 2010
Posts: 11
|
|
Hi Billy,
Did you add your question(s) on purpose to my post, or did you do it by mistake?
///Rene
|
 |
 |
|
|
subject: Mockito versus Powermock
|
|
|