Codeception icon
Codeception icon

Codeception

Codeception is a new full-stack testing PHP framework. It provides you absolutely new original way for writing acceptance, functional and unit tests.

results in windows

Cost / License

  • Free
  • Open Source

Platforms

  • Mac
  • Windows
  • Linux

Features

Codeception News & Activities

Highlights All activities

Recent activities

No activities found.

Codeception information

AlternativeTo Category

Development
Codeception was added to AlternativeTo by davert on and this page was last updated .
No comments or reviews, maybe you want to be first?

Featured in Lists

This list is inspired by the Kamran Ahmed's "2019 Developer Roadmap."...

List by Alex Ruiz with 41 apps, updated

Official Links

What is Codeception?

Codeception is a new full-stack testing PHP framework. It provides you absolutely new original way for writing acceptance, functional and unit tests.

Sample Codeception test may look like this.

<?php $I = new WebGuy($scenario); $I->wantTo('create new blog post'); $I->amOnPage('/blog/posts'); $I->click('Create new post'); $I->fillField('Title','Codeception, a new way of testing!'); $I->fillField('Text','Codeception is new PHP full-stack testing framework.'); $I->click('Send'); $I->see('Congratulations, your post is successfully created!'); ?>

It's very easy to read, easy to write and execute in a web browser or browser emulator.