Framework Mode - assertEquals
Folder Structure for JUnit Test Framework
src/
├── main/
│ └── java/
│ └── com/example/app/
│ └── Calculator.java
└── test/
└── java/
└── com/example/app/
├── tests/
│ └── CalculatorTest.java
├── utils/
│ └── TestUtils.java
└── config/
└── TestConfig.java
This structure separates production code and test code clearly. Tests live under src/test/java following the package structure.