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

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.

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.