Skip to content

Releases: rawsrc/exacodis

Packagist bug

27 Jun 06:34
Compare
Choose a tag to compare

As packagist does not allow versioning like v.1.2.3, the composer installer was stuck to the last compatible version with their numbering system.

This version (copy of v.1.2.3) is only for compatibility purpose.

Cosmetic report update

15 Aug 21:28
Compare
Choose a tag to compare

Just add some colors for PASSED or FAILED
Lock the timezone of the report to GMT/UTC/ZULU

Correct composer.json

13 Nov 10:37
Compare
Choose a tag to compare

This release is just to fix the composer.json update autoloader zone

Update: protected/private methods unit tests

11 Nov 23:02
Compare
Choose a tag to compare

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

11 Nov 22:48
Compare
Choose a tag to compare

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

30 Oct 08:35
Compare
Choose a tag to compare

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

28 Oct 09:21
Compare
Choose a tag to compare

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

27 Oct 08:51
Compare
Choose a tag to compare

Add 1 helper: assertCount(int $nb)
PhpDoc update

Minor update: stdHelpers

27 Oct 07:50
Compare
Choose a tag to compare

Added 2 helpers :

  • assertIsNotInstanceOf()`
  • assertNotException()`

New version

22 Oct 09:58
Compare
Choose a tag to compare

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