redcomponent/teststatistics

Codeception Extension to measure the performance of your tests

Package info

github.com/redCOMPONENT-COM/teststatistics

pkg:composer/redcomponent/teststatistics

Statistics

Installs: 273 636

Dependents: 1

Suggesters: 0

Stars: 9

Open Issues: 3

v2.2 2016-04-27 10:28 UTC

Requires

None

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

GPL2 a7fd0b21b85e87a911951f9f0f65cf16857a0245

performanceTDDunit testingfunctional testingacceptance testing

This package is auto-updated.

Last update: 2026-06-09 15:41:30 UTC


README

Please notice this repository is discountinued. Community is free to send updates and they will be happily processed, but redCOMPONENT is no longer updating to latest versions of Codeception as it has not been in maintenance for the past 5 years.

Codeception Extension to measure the performance of your tests

After running your tests you will see a Performance report of your tests:

Tests Performance times
-----------------------------------------------
tagCest::create 6s
tagCest::edit 15s
tagCest::delete 3s


Slow Steps (Steps taking more than 3s)
-----------------------------------------------
I click button 6s

Installation

Add teststatistics to your composer.json

 "require-dev": {
 ...
 "redcomponent/teststatistics": "dev-master",

Useage

Simply add to your extensions the line at the bottom in the following example in your codeception.yml:

actor: Tester
paths:
 tests: tests
 log: tests/_output
 data: tests/_data
 helpers: tests/_support
settings:
 bootstrap: _bootstrap.php
 colors: true
 memory_limit: 1024M
extensions:
 enabled: [Codeception\Extension\Teststatistics]