Skip to content

Releases: rawsrc/exacodis

Packagist bug

Choose a tag to compare

@rawsrc rawsrc released this 27 Jun 06:34

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

Choose a tag to compare

@rawsrc rawsrc released this 15 Aug 21:28

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

Correct composer.json

Choose a tag to compare

@rawsrc rawsrc released this 13 Nov 10:37

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

Update: protected/private methods unit tests

Choose a tag to compare

@rawsrc rawsrc released this 11 Nov 23:02

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

Choose a tag to compare

@rawsrc rawsrc released this 11 Nov 22:48

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

Choose a tag to compare

@rawsrc rawsrc released this 30 Oct 08:35

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

Choose a tag to compare

@rawsrc rawsrc released this 28 Oct 09:21

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

Choose a tag to compare

@rawsrc rawsrc released this 27 Oct 08:51

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

Minor update: stdHelpers

Choose a tag to compare

@rawsrc rawsrc released this 27 Oct 07:50

Added 2 helpers :

  • assertIsNotInstanceOf()`
  • assertNotException()`

New version

Choose a tag to compare

@rawsrc rawsrc released this 22 Oct 09:58

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