loophp/phpspec-time

This package is abandoned and no longer maintained. No replacement package was suggested.

A PHPSpec extension providing matchers for measuring time in tests.

1.1.1 2021-03-21 20:46 UTC

This package is auto-updated.

Last update: 2022-03-21 10:52:37 UTC


README

Latest Stable Version GitHub stars Total Downloads GitHub Workflow Status Scrutinizer code quality Type Coverage Code Coverage License Donate! Donate!

PHPSpec Time

A PHPSpec extension providing matchers for measuring time in tests.

New matchers:

  • shouldTakeLessThan(float $timeUnit)
  • shouldTakeMoreThan(float $timeUnit)
  • shouldTakeInBetween(float $fromTimeUnit, float $toTimeUnit)

Installation

composer require loophp/phpspec-time

Usage

Add the extension to the phpspec configuration file:

extensions:
    loophp\phpspectime\Extension: ~

By default, the time unit is in second, however other units are available:

  • nanosecond
  • microsecond
  • millisecond
  • second
  • minute
  • hour
  • day
  • week

If you want to change the time unit edit the extension configuration as such:

extensions:
    loophp\phpspectime\Extension:
        timeunit: nanosecond

In your tests, you'll have now access to the following new matchers:

    $this
        ->shouldTakeMoreThan(10)
        ->during('method');

    $this
        ->shouldNotTakeMoreThan(10)
        ->during('method');

    $this
        ->shouldTakeLessThan(10)
        ->during('method');

    $this
        ->shouldNotTakeLessThan(10)
        ->during('method');

    $this
        ->shouldTakeInBetween(3.0, 3.2)
        ->during('method');

    $this
        ->shouldNotTakeInBetween(3.0, 3.2)
        ->during('method');

Code quality, tests and benchmarks

Every time changes are introduced into the library, Github run the tests.

The library has tests written with PHPSpec. Feel free to check them out in the spec directory. Run composer phpspec to trigger the tests.

Before each commit some inspections are executed with GrumPHP, run composer grumphp to check manually.

The quality of the tests is tested with Infection a PHP Mutation testing framework, run composer infection to try it.

Static analysers are also controlling the code. PHPStan and PSalm are enabled to their maximum level.

Contributing

Feel free to contribute by sending Github pull requests. I'm quite reactive :-)

If you can't contribute to the code, you can also sponsor me on Github or Paypal.

Changelog

See CHANGELOG.md for a changelog based on git commits.

For more detailed changelogs, please check the release changelogs.