Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sancakerkan/libraryapp-integrationtesting
This repository contains integration tests for the LibraryApp, a Java-based application designed to manage library operations. The tests focus on verifying the interaction between various classes in the application, using Mockito for mocking dependencies.
https://github.com/sancakerkan/libraryapp-integrationtesting
junit junit5 maven mockito mockito-junit-test software-testing
Last synced: 24 days ago
JSON representation
This repository contains integration tests for the LibraryApp, a Java-based application designed to manage library operations. The tests focus on verifying the interaction between various classes in the application, using Mockito for mocking dependencies.
- Host: GitHub
- URL: https://github.com/sancakerkan/libraryapp-integrationtesting
- Owner: sancakerkan
- License: mit
- Created: 2024-08-26T13:34:28.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-08-27T22:35:15.000Z (2 months ago)
- Last Synced: 2024-10-14T20:40:41.936Z (24 days ago)
- Topics: junit, junit5, maven, mockito, mockito-junit-test, software-testing
- Language: Java
- Homepage:
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LibraryApp Integration Testing (Mockito)
![Java](https://img.shields.io/badge/Java-ED8B00?style=for-the-badge&logo=java&logoColor=white)
![JUnit](https://img.shields.io/badge/JUnit-25A162?style=for-the-badge&logo=junit5&logoColor=white)
![Maven](https://img.shields.io/badge/Maven-C71A36?style=for-the-badge&logo=apache-maven&logoColor=white)
![GitHub](https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white)
[![Mockito](https://img.shields.io/badge/Mockito-5.12.0-brightgreen)](https://github.com/mockito/mockito)
![Issues](https://img.shields.io/github/issues/sancakerkan/LibraryApp-IntegrationTesting)
![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)## Table of Contents
- [Introduction](#introduction)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Testing](#testing)
- [Call-Graph](#call-graph)
- [Contributing](#contributing)
- [License](#license)
- [Acknowledgements](#acknowledgements)## Introduction
This repository contains integration tests for the LibraryApp, a Java-based application designed to manage library operations. The tests focus on verifying the interaction between various classes in the application, using Mockito for mocking dependencies.
## Features
- **Book Management:** Perform operations such as searching, checking out, and submitting books.
- **Integration Testing:** Comprehensive tests for interactions between the `LibraryApp` and `BookRepository` classes using JUnit and Mockito.## Installation
### Prerequisites
- Java Development Kit (JDK) 8 or later
- An IDE with Maven support (IntelliJ IDEA, Eclipse, etc.)### Cloning the Repository
1. **Using IntelliJ IDEA:**
- Go to `File` > `New` > `Project from Version Control`.
- Enter the repository URL: `https://github.com/sancakerkan/LibraryApp-IntegrationTesting.git`.
- Click `Clone`.2. **Using Eclipse:**
- Go to `File` > `Import...`.
- Select `Git` > `Projects from Git` > `Clone URI`.
- Enter the repository URL: `https://github.com/sancakerkan/LibraryApp-IntegrationTesting.git`.
- Follow the prompts to complete the cloning process.
3. **OR Simply Download the ZIP file**
- [ZIP File](https://github.com/sancakerkan/LibraryApp-IntegrationTesting/archive/refs/heads/main.zip)## Usage
### Running the LibraryApp
1. **Using IntelliJ IDEA:**
- Open the project.
- Navigate to `src/main/java/Main.java`.
- Right-click `Main.java` and select `Run .2. **Using Eclipse:**
- Open the project.
- Navigate to `src/main/java/Main.java`.
- Right-click `Main.java` and select `Run As` > `Java Application`.## Testing
### Running Test Class
You can run individual test classes, particularly those testing integration scenarios:
1. **Using IntelliJ IDEA:**
- Navigate to the specific test class (e.g., `LibraryAppTest.java`).
- Right-click the class and select `Run 'LibraryAppTest'`.2. **Using Eclipse:**
- Navigate to the specific test class (e.g., `LibraryAppTest.java`).
- Right-click the class and select `Run As` > `JUnit Test`.### Test Structure
- `LibraryAppTest`: Tests the integration between `LibraryApp` and `BookRepository`, covering cases like book search, checkout, and submission.## Call-Graph
## Contributing
Contributions are welcome! If you have any suggestions or improvements, feel free to open an issue or submit a pull request.
1. Fork the repository
2. Create your feature branch
3. Commit your changes
4. Push to the branch
5. Open a pull request## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.
## Acknowledgements
- **Special thanks to the creators of Mockito and JUnit for providing the testing frameworks used in this project.**