Search Results

37
votes

Why didn’t unit testing work out for your project?

Tightly coupled code made it impossible to test one unit without testing the entire system - which in turn depended on other systems. …
2
votes

How can I access private class members in Java?

Some methods I've used in the past: Make _ix protected, create a subclass where you implement a setter Make a constructor taking the value for _ix as a parameter Use …