Top "Testability" questions

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 …

java multithreading unit-testing junit testability
inheritance vs. composition for testability

While designing my objects I find composition to be a better choice from the perspective of testability. The reason being, …

inheritance composition testability