An open API service indexing awesome lists of open source software.

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

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 (: