Releases: rawsrc/exacodis
Releases · rawsrc/exacodis
Packagist bug
Cosmetic report update
Just add some colors for PASSED or FAILED
Lock the timezone of the report to GMT/UTC/ZULU
Correct composer.json
This release is just to fix the composer.json update autoloader zone
Update: protected/private methods unit tests
UPDATE:
- add the possibility to test any protected or private static or not method in a class
- write new tests for the new features
Update: protected/private methods unit tests
UPDATE:
- add the possibility to test any protected or private method in a class
- write new tests for this new feature
- this version doesn't break the compatibility with the previous
Minor update: test file header
Minor update:
Instead of having in the test file header:
include_once 'Pilot.php';
include_once 'Report.php';
include_once 'Runner.php';
use Exacodis\Pilot;
use Exacodis\Report;
use Exacodis\Runner;
You just have now:
include_once 'Pilot.php';
use Exacodis\{ Pilot, Report, Runner };
Minor update: simplify runner extraction
Simplify the extraction of the latest runner by adding a null value to the default parameter: instead of $pilot->getRunner(null)
, you have now $pilot->getRunner()
which is equivalent
README update also
Minor update: stdHelpers
Add 1 helper: assertCount(int $nb)
PhpDoc update
Minor update: stdHelpers
Added 2 helpers :
assertIsNotInstanceOf
()`assertNotException
()`
New version
New version 1.1.0
- compatible with the previous version
- code improvements
- better report data
- new method
assert()
to write dynamic tests easily
Doc updated
rawsrc