https://github.com/hmaach/01edu-tests
A collection of test cases for all 01-edu projects. Each project has a .txt file containing tests for various scenarios, which are progressively added as each project is completed. Ideal for ensuring correctness and handling edge cases.
https://github.com/hmaach/01edu-tests
01-edu testing zone01oujda
Last synced: about 1 year ago
JSON representation
A collection of test cases for all 01-edu projects. Each project has a .txt file containing tests for various scenarios, which are progressively added as each project is completed. Ideal for ensuring correctness and handling edge cases.
- Host: GitHub
- URL: https://github.com/hmaach/01edu-tests
- Owner: hmaach
- Created: 2024-12-12T13:07:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-29T17:50:37.000Z (over 1 year ago)
- Last Synced: 2025-03-24T09:21:14.284Z (over 1 year ago)
- Topics: 01-edu, testing, zone01oujda
- Language: Go
- Homepage:
- Size: 2.8 MB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 01 Edu Project Tests Repository
## Overview
This repository contains test cases for various 01 Edu projects. Each project has its own dedicated folder with text files representing different test scenarios.
## Repository Structure
```
01edu-tests/
│
├── project1/
│ ├── test_case1.txt
│ ├── test_case2.txt
│ └── test_case3.txt
│
├── project2/
│ ├── test_case1.txt
│ └── test_case2.txt
│
└── README.md
```
## How to Use the Tests
### Test File Naming Convention
- Each test file is named descriptively to indicate the specific scenario being tested.
- Files are plain text (.txt) for easy readability.
### Running Tests
1. Navigate to the specific project folder you want to test.
2. Review the test case files to understand the different scenarios.
3. Use these test files as a reference or input for your project implementations.
## Contributing
### Adding New Tests
1. Create a folder for a new project if it doesn't exist.
2. Add test case files with clear and descriptive names.
3. Ensure test cases cover various scenarios and edge cases.
## Notes
- Test files are meant to be used as guidance and reference.
- Always verify and validate tests against the specific project requirements.