2017 © Pedro Peláez
 

library phpunit-graceful-interrupt

Allow gracefully interrupt running PHPUnit tests

image

esler/phpunit-graceful-interrupt

Allow gracefully interrupt running PHPUnit tests

  • Thursday, April 12, 2018
  • by esler
  • Repository
  • 1 Watchers
  • 0 Stars
  • 964 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 37 % Grown

The README.md

Description

A simple plug-in which allows to you interrupt running PHPUnit tests gracefully., (*1)

Instalation

composer require --dev esler/phpunit-graceful-interrupt

For PHPUnit >= 10

Add extension to your `phpunit.xml`
<phpunit>
    <extensions>
        <bootstrap class="Esler\PHPUnit\GracefulInterruptExtension" />
    </extensions>
</phpunit>

For PHPUnit < 10

Add listener to your phpunit.xml, (*2)

<phpunit>
  <listeners>
    <listener class="Esler\PHPUnit\Listener\GracefulInterruptListener" />
  </listeners>
</phpunit>

Usage

Just hit Ctrl+\ to interrupt running tests. Errors and failures from previous tests will be shown., (*3)

More info., (*4)

License

MIT, (*5)

The Versions

12/04 2018

dev-master

9999999-dev https://github.com/esler/phpunit-graceful-interrupt

Allow gracefully interrupt running PHPUnit tests

  Sources   Download

MIT

The Requires

 

by Ondrej Esler

phpunit graceful interrupt

12/04 2018

v2.0

2.0.0.0 https://github.com/esler/phpunit-graceful-interrupt

Allow gracefully interrupt running PHPUnit tests

  Sources   Download

MIT

The Requires

 

by Ondrej Esler

phpunit graceful interrupt

13/02 2017

v1.0

1.0.0.0 https://github.com/esler/phpunit-graceful-interrupt

Allow gracefully interrupt running PHPUnit tests

  Sources   Download

MIT

The Requires

 

by Ondrej Esler

phpunit graceful interrupt

13/02 2017

v0.9.1

0.9.1.0 https://github.com/esler/phpunit-graceful-interrupt

Allow gracefully interrupt running PHPUnit tests

  Sources   Download

MIT

The Requires

 

by Ondrej Esler

phpunit graceful interrupt

13/02 2017

v0.9

0.9.0.0 https://github.com/esler/phpunit-graceful-interrupt

Allow gracefully interrupt running PHPUnit tests

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-pcntl *

 

The Development Requires

by Ondrej Esler

phpunit graceful interrupt