s1ptex / uniter
A package for quickly creating Unit tests
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/s1ptex/uniter
This package is auto-updated.
Last update: 2025-12-29 04:07:49 UTC
README
Instalation
composer require s1ptex/uniter
Usage
First you need to create a cortege of testsв
$Cortege = new \S1ptex\Uniter\Cortege("Test cortege");
Now add test
$Cortege->add("One plus One is Two", function(\S1ptex\Uniter\Test $test){ $test->assert(1+1 === 2); });
Print cortege
$Cortege->execute();
Let's run
php8.1 name_of_file.php