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.
- Host: GitHub
- URL: https://github.com/ayvero/testing_educational_example
- Owner: Ayvero
- Created: 2025-03-31T23:08:41.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-03-31T23:11:44.000Z (6 months ago)
- Last Synced: 2025-04-01T00:22:33.698Z (6 months ago)
- Language: Java
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎓 Java Unit Testing - Educational Example

## 📝 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.git2. Open the project in your IDE (IntelliJ, Eclipse, VS Code).
3. Run the test cases using JUnit to understand their behavior.