Framework Mode - Testing private methods (should you?)
Folder Structure for JUnit Test Framework
src/
├── main/
│ └── java/
│ └── com/example/app/
│ └── MyClass.java
└── test/
└── java/
└── com/example/app/
└── MyClassTest.java
This structure separates production code and test code clearly. Tests mirror the package structure of the main code.