for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
if (!function_exists('verifyThat')) {
/**
* @param $truth
*/
function verifyThat($truth)
{
verify_that($truth);
}
if (!function_exists('verifyNot')) {
* @param $fallacy
function verifyNot($fallacy)
verify_not($fallacy);
if (!function_exists('expectThat')) {
function expectThat($truth)
expect_that($truth);
if (!function_exists('expectNot')) {
function expectNot($fallacy)
expect_not($fallacy);