mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-06 05:57:26 +02:00
1.5 KiB
1.5 KiB
isChild, anchor
isChild | anchor |
---|---|
true | complementary_testing_tools |
Complementary Testing Tools
Besides individual testing and behavior driven frameworks, there are also a number of generic frameworks and helper libraries useful for any preferred approach taken.
Tool Links
- Selenium is a browser automation tool which can be integrated with PHPUnit
- Mockery is a Mock Object Framework which can be integrated with PHPUnit or PHPSpec
- Prophecy is a highly opinionated yet very powerful and flexible PHP object mocking framework. It's integrated with PHPSpec and can be used with PHPUnit.
- php-mock is a library to help to mock PHP native functions.
- Infection is a PHP implementation of Mutation Testing to help to measure the effectiveness of your tests.
- PHPUnit Polyfills is a library that allows for creating PHPUnit cross-version compatible tests when a test suite needs to run against a range of PHPUnit versions.