PHPackages                             kirdia/codeception-test - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. kirdia/codeception-test

ActiveLibrary

kirdia/codeception-test
=======================

BDD-style testing framework

2.4.2(7y ago)07MITPHPPHP &gt;=5.6.0 &lt;8.0

Since May 28Pushed 7y ago1 watchersCompare

[ Source](https://github.com/kirdia/Codeception)[ Packagist](https://packagist.org/packages/kirdia/codeception-test)[ Docs](http://codeception.com/)[ RSS](/packages/kirdia-codeception-test/feed)WikiDiscussions 2.4 Synced 6d ago

READMEChangelogDependencies (23)Versions (127)Used By (0)

Codeception
===========

[](#codeception)

[![Latest Stable](https://camo.githubusercontent.com/84e9346d45999af2f642976cfc9a2c07aa37e0f5da367dafaa249aa375aa5e8f/68747470733a2f2f706f7365722e707567782e6f72672f436f646563657074696f6e2f436f646563657074696f6e2f76657273696f6e2e706e67)](https://packagist.org/packages/Codeception/Codeception)[![Total Downloads](https://camo.githubusercontent.com/0bcc33ff92b197fba641768f2fdec38de15dcdc7cb006a5a3b0ae58973b8f88d/68747470733a2f2f706f7365722e707567782e6f72672f636f646563657074696f6e2f636f646563657074696f6e2f646f776e6c6f6164732e706e67)](https://packagist.org/packages/codeception/codeception)[![Daily Downloads](https://camo.githubusercontent.com/6edfc79776e5fd00401d317e8c450e1009d5296e689bd4eb9c3a2a7d7e464513/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64642f636f646563657074696f6e2f636f646563657074696f6e2e737667)](https://packagist.org/packages/codeception/codeception)[![Gitter](https://camo.githubusercontent.com/abe08b740a4156153736f791393ec4da6619c4be73212e75769f52edacc0e2b5/68747470733a2f2f6261646765732e6769747465722e696d2f4a6f696e253230436861742e737667)](https://gitter.im/Codeception/Codeception?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)[![PHP 7 ready](https://camo.githubusercontent.com/e4a22a5f2894fdd86ef46afd5682405bb2ac883b67ed36c1f888bca17fe0a776/687474703a2f2f7068703772656164792e74696d6573706c696e7465722e63682f436f646563657074696f6e2f436f646563657074696f6e2f62616467652e737667)](https://travis-ci.org/Codeception/Codeception)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/2cbdbacc464c87decb958634d7e35de90def84dbc407180804adc2c25daaee3b/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f436f646563657074696f6e2f436f646563657074696f6e2f6261646765732f7175616c6974792d73636f72652e706e673f623d322e34)](https://scrutinizer-ci.com/g/Codeception/Codeception/?branch=2.4)

**Modern PHP Testing for everyone**

Codeception is a modern full-stack testing framework for PHP. Inspired by BDD, it provides an absolutely new way of writing acceptance, functional and even unit tests. Powered by PHPUnit.

GeneralWindowsWebdriverHHVM[![Build Status](https://camo.githubusercontent.com/deb1643f08616a609d3a14e0b6d730edd95dfdc95f408eb1da1e8e280468b5c4/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f436f646563657074696f6e2f436f646563657074696f6e2e706e673f6272616e63683d322e34)](http://travis-ci.org/Codeception/Codeception)[![Build status](https://camo.githubusercontent.com/b53da2e71a334d9f7b30ddb6057196d6ac2d37105db908ce920447a0e117e923/68747470733a2f2f63692e6170707665796f722e636f6d2f6170692f70726f6a656374732f7374617475732f6e746a6a3969347936376431726237793f7376673d74727565)](https://ci.appveyor.com/project/DavertMik/codeception/branch/2.4)[![Build Status](https://camo.githubusercontent.com/4c98ad627390aeab494056ec4609d84231f6e0cbbb46a77003c0ffb50d548657/68747470733a2f2f73656d6170686f726563692e636f6d2f6170692f76312f636f646563657074696f6e2f636f646563657074696f6e2f6272616e636865732f6d61737465722f736869656c64735f62616467652e737667)](https://semaphoreci.com/codeception/codeception)[![wercker status](https://camo.githubusercontent.com/268b73e870c5ddde90c70118da2207027d037372fd58079fdfd74fd679ea196f/68747470733a2f2f6170702e776572636b65722e636f6d2f7374617475732f62346565636430353936626564623635333333666637616237383336626337662f732f "wercker status")](https://app.wercker.com/project/byKey/b4eecd0596bedb65333ff7ab7836bc7f)#### Contributions

[](#contributions)

At Codeception we are glad to receive contributions from the community. If you want to send additions or fixes to the code or the documentation please check the [Contributing guide](https://github.com/Codeception/Codeception/blob/2.4/CONTRIBUTING.md).

### At a Glance

[](#at-a-glance)

Describe what you test and how you test it. Use PHP to write descriptions faster.

Run tests and see what actions were taken and what results were seen.

#### Sample test

[](#sample-test)

```
$I->wantTo('create wiki page');
$I->amOnPage('/');
$I->click('Pages');
$I->click('New');
$I->see('New Page');
$I->submitForm('form#new_page', ['title' => 'Movie Review']);
$I->see('page created'); // notice generated
$I->see('Movie Review','h1'); // head of page of is our title
$I->seeInCurrentUrl('pages/movie-review'); // slug is generated
$I->seeInDatabase('pages', ['title' => 'Movie Review']); // data is stored in database
```

For unit testing you can stay on classic PHPUnit tests, as Codeception can run them too.

Installation
------------

[](#installation)

### Composer

[](#composer)

```
php composer.phar require "codeception/codeception"

```

### Phar

[](#phar)

Download [codecept.phar](http://codeception.com/codecept.phar)

Copy it into your project.

You can also make Codeception an executable and it put it into your `$PATH`, for instance:

```
wget http://codeception.com/codecept.phar

chmod +x codecept.phar

sudo mv codecept.phar /usr/local/bin/codecept

```

You can then run Codecept in the command line using: `codecept bootstrap`, `codecept run`, etc

Run CLI utility:

```
php codecept.phar

```

See also [Installation](http://codeception.com/install) | **[QuickStart](http://codeception.com/quickstart)**

Getting Started
---------------

[](#getting-started)

After you successfully installed Codeception, run this command:

```
codecept bootstrap

```

This will create a default directory structure and default test suites.

Documentation
-------------

[](#documentation)

[Documentation](http://codeception.com/docs/01-Introduction)

Documentation is included within the project. Look for it in the ['docs' directory](https://github.com/Codeception/Codeception/tree/master/docs).

License
-------

[](#license)

MIT

(c) [Codeception Team](http://codeception.com/credits)2011-2018

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity85

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 63.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~17 days

Recently: every ~26 days

Total

127

Last Release

2895d ago

Major Versions

1.8.3 → 2.0.0-alpha2014-02-18

1.8.5 → 2.0.0-RC22014-05-13

1.8.6 → 2.0.02014-06-06

1.8.7 → 2.0.22014-07-08

1.8.x-dev → 2.2.72016-12-05

PHP version history (6 changes)1.0.9PHP &gt;=5.3.2

1.5.0PHP &gt;=5.3.3

2.0.0-alphaPHP &gt;=5.4.0

1.8.4PHP &gt;=5.3.19

2.1.7PHP &gt;=5.4.0 &lt;8.0

2.4.2PHP &gt;=5.6.0 &lt;8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/0d006dae775e9a9acffd588a7adef126bb91f6be44b013c5b20794d9d8cd8856?d=identicon)[kirdia](/maintainers/kirdia)

---

Top Contributors

[![DavertMik](https://avatars.githubusercontent.com/u/220264?v=4)](https://github.com/DavertMik "DavertMik (2802 commits)")[![Naktibalda](https://avatars.githubusercontent.com/u/395992?v=4)](https://github.com/Naktibalda "Naktibalda (711 commits)")[![janhenkgerritsen](https://avatars.githubusercontent.com/u/1123080?v=4)](https://github.com/janhenkgerritsen "janhenkgerritsen (202 commits)")[![tiger-seo](https://avatars.githubusercontent.com/u/398720?v=4)](https://github.com/tiger-seo "tiger-seo (188 commits)")[![sergeyklay](https://avatars.githubusercontent.com/u/1256298?v=4)](https://github.com/sergeyklay "sergeyklay (74 commits)")[![samdark](https://avatars.githubusercontent.com/u/47294?v=4)](https://github.com/samdark "samdark (66 commits)")[![zbateson](https://avatars.githubusercontent.com/u/8356974?v=4)](https://github.com/zbateson "zbateson (61 commits)")[![raistlin](https://avatars.githubusercontent.com/u/76889?v=4)](https://github.com/raistlin "raistlin (29 commits)")[![eXorus](https://avatars.githubusercontent.com/u/1255561?v=4)](https://github.com/eXorus "eXorus (25 commits)")[![ThomasLandauer](https://avatars.githubusercontent.com/u/1054469?v=4)](https://github.com/ThomasLandauer "ThomasLandauer (17 commits)")[![akovardin](https://avatars.githubusercontent.com/u/365223?v=4)](https://github.com/akovardin "akovardin (16 commits)")[![gimler](https://avatars.githubusercontent.com/u/200904?v=4)](https://github.com/gimler "gimler (15 commits)")[![piccagliani](https://avatars.githubusercontent.com/u/3021304?v=4)](https://github.com/piccagliani "piccagliani (13 commits)")[![Ragazzo](https://avatars.githubusercontent.com/u/1748844?v=4)](https://github.com/Ragazzo "Ragazzo (13 commits)")[![TrustNik](https://avatars.githubusercontent.com/u/1707938?v=4)](https://github.com/TrustNik "TrustNik (12 commits)")[![korotovsky](https://avatars.githubusercontent.com/u/104727?v=4)](https://github.com/korotovsky "korotovsky (12 commits)")[![enumag](https://avatars.githubusercontent.com/u/539462?v=4)](https://github.com/enumag "enumag (12 commits)")[![sp0tteh](https://avatars.githubusercontent.com/u/2469231?v=4)](https://github.com/sp0tteh "sp0tteh (11 commits)")[![SamMousa](https://avatars.githubusercontent.com/u/547021?v=4)](https://github.com/SamMousa "SamMousa (11 commits)")[![brutuscat](https://avatars.githubusercontent.com/u/301959?v=4)](https://github.com/brutuscat "brutuscat (10 commits)")

---

Tags

unit testingfunctional-testingacceptance-testingBDDTDD

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/kirdia-codeception-test/health.svg)

```
[![Health](https://phpackages.com/badges/kirdia-codeception-test/health.svg)](https://phpackages.com/packages/kirdia-codeception-test)
```

###  Alternatives

[codeception/codeception

All-in-one PHP Testing Framework

4.9k86.2M2.9k](/packages/codeception-codeception)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[silverstripe/framework

The SilverStripe framework

7213.5M2.5k](/packages/silverstripe-framework)[behat/behat

Scenario-oriented BDD framework for PHP

4.0k96.8M2.0k](/packages/behat-behat)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

19462.3M1.3k](/packages/drupal-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
