https://github.com/martinkalema/junit-testing
Testing Java Application using JUnit Framework
https://github.com/martinkalema/junit-testing
junit unit-testing
Last synced: 3 months ago
JSON representation
Testing Java Application using JUnit Framework
- Host: GitHub
- URL: https://github.com/martinkalema/junit-testing
- Owner: MartinKalema
- License: apache-2.0
- Created: 2024-03-23T21:52:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-02T12:43:04.000Z (over 1 year ago)
- Last Synced: 2025-02-28T20:47:36.461Z (8 months ago)
- Topics: junit, unit-testing
- Language: Java
- Homepage:
- Size: 131 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Meeting Planner Unit Testing.
The Meeting Planner Java Application is a software solution designed to facilitate the scheduling and management of meetings. This project employs the JUnit testing framework for ensuring the reliability and correctness of its functionalities.#### Project Installation
```
git clone https://github.com/MartinKalema/JUnit-Testing
```#### Install Maven (Linux)
```
sudo apt install maven
```
#### Compile Using Maven (Linux)
```
mvn clean compile
```#### Run All Tests (Linux)
```
mvn test
```
#### Run Specific Test Method (Linux)
```
mvn -Dtest=testFileName#testMethodName test
```
For example, to run testIsBusy() located in CalendarTest.java, use the command below.```
mvn -Dtest=CalendarTest#testIsBusy test
```
Windows users i'm sorry (: