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

https://github.com/ayvero/testing_educational_example

An educational example provided by the university to demonstrate unit testing concepts in Java using JUnit. This repository includes well-documented test cases to illustrate testing fundamentals.
https://github.com/ayvero/testing_educational_example

Last synced: 5 months ago
JSON representation

An educational example provided by the university to demonstrate unit testing concepts in Java using JUnit. This repository includes well-documented test cases to illustrate testing fundamentals.

Awesome Lists containing this project

README

          

# 🎓 Java Unit Testing - Educational Example
![Java](https://img.shields.io/badge/Java-Unit%20Testing-blue)
![JUnit](https://img.shields.io/badge/JUnit-4%20%26%205-green)

## 📝 Description
This repository contains an **educational example** provided by the university to demonstrate the **fundamentals of unit testing** in Java using **JUnit 4 and JUnit 5**.

It includes well-documented test cases covering:
✅ Basic test structure
✅ Assertions and expected results
✅ Setup and teardown methods
✅ Exception handling tests

## 🚀 Technologies
- Java
- JUnit 4
- JUnit 5

## 📌 How to Use
1. Clone the repository:
```sh
git clone https://github.com/Ayvero/testing_educational_example.git

2. Open the project in your IDE (IntelliJ, Eclipse, VS Code).

3. Run the test cases using JUnit to understand their behavior.