Framework Mode - assertNotEquals
Folder Structure of a JUnit Test Automation Framework
project-root/ ├── src/ │ ├── main/ │ │ └── java/ │ │ └── com/example/app/ # Application source code │ └── test/ │ └── java/ │ ├── com/example/app/tests/ # Test classes using JUnit │ ├── com/example/app/pages/ # Page Object classes │ └── com/example/app/utils/ # Utility classes (e.g., waits, helpers) ├── resources/ │ └── testdata/ # Test data files (CSV, JSON) ├── build.gradle or pom.xml # Build and dependency management └── junit-platform.properties # JUnit configuration