Codeception VS PHPUnit

Compare Codeception vs PHPUnit and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Codeception PHPUnit
12 47
4,739 19,527
0.3% -
7.6 9.9
8 days ago about 9 hours ago
PHP PHP
MIT License BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Codeception

Posts with mentions or reviews of Codeception. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-27.
  • Any good resources on how to do “interaction” tests?
    6 projects | /r/PHP | 27 May 2023
  • Any pro-tips for writing automated tests with Selenium PHP?
    3 projects | /r/PHP | 2 May 2023
    Personal experience: - don’t use Behat unless you really needed a “story telling”, it has a intermediate layer Gherkin that you’ll need to code. You can write “Given/When/Then” steps but you’ll also need to write “php code” that will interpret this step. - using real browser be prepared for instability - any interaction with JavaScript can broken/delay execution - be prepared that this tests are call functional they are the most expensive test, so start small unit then integration and only then functional. - use https://github.com/symfony/panther or https://codeception.com/ you’ll have phpunit alike interface to run them. - you’ll need to reset state of your database each time to provide “isolation” and stability
  • PHPUnit, do i need to learn it?
    5 projects | /r/PHP | 6 Jan 2023
    Codeception: https://codeception.com/
  • Automating Tests using CodeceptJS and Testomat.io: First Steps
    8 projects | dev.to | 6 Sep 2022
    There are enough blog posts about Jest or Cypress already, so let me introduce Codecept. It comes in two flavors. There is Codeception for PHP, and there is CodeceptJS for JavaScript which we will be using here.
  • Testing PHP Applications
    5 projects | dev.to | 5 Aug 2022
    There are many tools you can use for this purpose, but one I particularly like is CodeCeption. What I like most about it is that it's a unified tool that can be used to perform several types of tests, acceptance being one of them.
  • Symfony Station Communiqué - 04 March 2022. A Look at Symfony and PHP news!
    2 projects | dev.to | 4 Mar 2022
    And within the Symfony ecosystem Codeception, which “collects and shares best practices and solutions for testing PHP web applications. With a flexible set of included modules tests are easy to write, easy to use, and easy to maintain.”
  • Modern tools for PHP developers
    9 projects | dev.to | 24 Jan 2022
    Other tools worth mentioning include Codeception and behat. Both use phpUnit underneath, but have different approaches to writing tests.
  • Testing strategies
    2 projects | dev.to | 8 Sep 2021
    Codeception

PHPUnit

Posts with mentions or reviews of PHPUnit. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-27.
  • 8 Essential Tools Every PHP Developer Needs
    6 projects | dev.to | 27 Feb 2024
    PHPUnit is the de facto standard for PHP unit testing. It provides a framework for writing and running tests, helping developers quickly discover and fix errors. PHPUnit encourages developers to write testable code and adopt a test-driven development approach, resulting in higher-quality code and reduced chances of errors in production.
  • How to migrate from Api Platform v2 to v3?
    2 projects | dev.to | 29 Nov 2023
    Before updating Api Platform, you should make sure that your Api Platform routes are fully covered by tests. You can define integration tests with PHPUnit, Behat or Pest, depending on the tool you’re most comfortable with.
  • How To Write Better and Quality Code
    5 projects | dev.to | 5 Nov 2023
    PHP popular tools for testing: PHPUnit
  • PHP libraries and tools
    47 projects | dev.to | 18 Oct 2023
    PHPUnit: PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of the xUnit architecture for unit testing frameworks. Extensions/tools: brianium/paratest: Parallel testing for PHPUnit johnkary/phpunit-speedtrap: Reports on slow-running tests in your PHPUnit test suite. robiningelbrecht/phpunit-pretty-print: Better PHPUnit CLI output with Collision roave/no-leaks: PHPUnit Plugin for detecting Memory Leaks in code and tests
  • Top 6 PHP code quality tools 2023
    7 projects | dev.to | 30 May 2023
    PHPUnit: PHPUnit
    7 projects | dev.to | 30 May 2023
    PHPUnit: PHPUnit PHPUnit is a testing framework for PHP. It enables developers to write unit tests, integration tests, and functional tests to verify the correctness of their code. It offers a wide range of assertions, test runners, and mocking capabilities. Documentation: Explore PHPUnit's capabilities and learn how to write effective tests in the official documentation: PHPUnit Repository
  • I created a PHPUnit 10 extension to prettify CLI output
    6 projects | /r/PHP | 25 Apr 2023
    I really like how Pest PHP formats and outputs test results, but I still prefer to use PHPUnit. Luckily there's Collision. This package is designed to give you beautiful error reporting when interacting with your app through the command line.
  • Setup local development environment and run tests of PHP Twig
    5 projects | dev.to | 19 Mar 2023
    Finally we install the command line version of php (no web server is needed for this project), composer which is a package management system for PHP and PHP Unit, the testing framework of PHP.
  • Using github actions to execute your PHP tests after every push
    3 projects | dev.to | 25 Feb 2023
    I've been developing my own symfony bundle and I would like to share with you how I'm driving continuos integration to execute my unit tests. For testing purposes I'm using phpunit and for continous integration i've choosen github actions.
  • 7 Powerful Tools to Simplify Laravel Developers' Life
    2 projects | dev.to | 23 Jan 2023
    PHPUnit is a unit testing framework for PHP included with Laravel and can be used to test your application's code. It provides a set of assertions and functions for testing your code and can be used to run automated tests.

What are some alternatives?

When comparing Codeception and PHPUnit you can also consider the following projects:

Mockery - Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL).

Behat - BDD in PHP

Pest - Pest is an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP.

PHPStan - PHP Static Analysis Tool - discover bugs in your code without running it!

Prophecy - Highly opinionated mocking framework for PHP 5.3+

Atoum - The modern, simple and intuitive PHP unit testing framework.

Faker

Kahlan - :heavy_check_mark: PHP Test Framework for Freedom, Truth, and Justice

PHPSpec - SpecBDD Framework for PHP

ParaTest - :computer: Parallel testing for PHPUnit