2017 © Pedro Peláez
 

library codeception

BDD-style testing framework

image

codeception/codeception

BDD-style testing framework

  • Thursday, July 26, 2018
  • by davert
  • Repository
  • 195 Watchers
  • 3413 Stars
  • 8,823,120 Installations
  • PHP
  • 1644 Dependents
  • 21 Suggesters
  • 1170 Forks
  • 437 Open issues
  • 100 Versions
  • 7 % Grown

The README.md

Stand With Ukraine, (*1)

Codeception

Latest Stable Total Downloads StandWithUkraine Build status, (*2)

Modern PHP Testing for everyone, (*3)

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., (*4)

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., (*5)

At a Glance

Describe what you test and how you test it. Use PHP to write descriptions faster., (*6)

Run tests and see what actions were taken and what results were seen., (*7)

Sample test

``` php $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, (*8)


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

php composer.phar require "codeception/codeception", (*9)


TODO: Document how to install the modules, e.g.

php composer.phar require "codeception/module-phpbrowser", (*10)


### Phar Download [codecept.phar](https://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 https://codeception.com/codecept.phar, (*11)

chmod +x codecept.phar, (*12)

sudo mv codecept.phar /usr/local/bin/codecept, (*13)


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

php codecept.phar, (*14)


See also [Installation](https://codeception.com/install) | **[QuickStart](https://codeception.com/quickstart)** ## Getting Started After you successfully installed Codeception, run this command:

codecept bootstrap ```, (*15)

This will create a default directory structure and default test suites., (*16)

Documentation

View Documentation, (*17)

The documentation source files can be found at https://github.com/Codeception/codeception.github.com/tree/master/docs/., (*18)

License

MIT, (*19)

The Versions