911 B
911 B
Jilo Web Test Suite
This directory contains the test suite for the Jilo Web application. All testing-related files are isolated here to keep the main application clean.
Structure
tests/
├── framework/ # Test framework files
│ ├── composer.json # Composer configuration for tests
│ ├── phpunit.xml # PHPUnit configuration
│ ├── Unit/ # Unit tests
│ ├── Integration/ # Integration tests
│ └── TestCase.php # Base test case class
└── README.md # This file
Running Tests
- Change to the framework directory:
cd tests/framework
- Install dependencies (first time only):
composer install
- Run all tests:
composer test
- Generate coverage report:
composer test-coverage
The coverage report will be generated in tests/framework/coverage/
.