Tagged Questions
37
votes
13answers
11k views
Java: How to test methods that call System.exit()?
I've got a few methods that should call System.exit() on certain inputs. Unfortunately, testing these cases causes JUnit to terminate! Putting the method calls in a new Thread doesn't seem to help, ...
1
vote
6answers
236 views
Constructor Injection, design for testability
I have this code (you probably can ignore that it is Swing code), but I usually end up with too many arguments in my constructor. Should I use model bean class and then pass that object in the ...
0
votes
2answers
80 views
Correct design of classes built for testability using constructor injection
Say I have these 3 layers of my code:
1. Database layer (ORM)
2. BusinessLogic
3. Application
Now, I write my code as follows:
Database layer:
This mainly has CURD operations over database.
class ...
0
votes
3answers
204 views
Testable Java Code: using model beans with a constructor
According to Misko Hevery that has a testability blog. Developers should avoid 'holder', 'context', and 'kitchen sink' objects (these take all sorts of other objects and are a grab bag of ...