Codeception icon
Codeception icon

Codeception

 3 likes

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

License model

  • FreeOpen Source

Country of Origin

  • US flagUnited States

Platforms

  • Mac
  • Windows
  • Linux
  No rating
3likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Selenium testing
  2.  Unit Testing

 Tags

  • Php
  • bdd
  • tdd
  • phpunit
  • quality-assurance
  • acceptance-testing
  • functional-testing

Codeception News & Activities

Highlights All activities

Recent activities

Show all activities

Codeception information

  • Developed by

    US flagMichael Bodnarchuk
  • Licensing

    Open Source and Free product.
  • Alternatives

    14 alternatives listed
  • Supported Languages

    • English

AlternativeTo Category

Development

Our users have written 0 comments and reviews about Codeception, and it has gotten 3 likes

Codeception was added to AlternativeTo by davert on May 3, 2012 and this page was last updated Sep 9, 2022.
No comments or reviews, maybe you want to be first?
Post comment/review

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.

Official Links