芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/codeception/verify/src/Codeception/function.php
notEmpty(); } function verify_not($fallacy) { verify($fallacy)->isEmpty(); } } if (!function_exists('expect')) { /** * @param $description * @param null $actual * @return \Codeception\Verify */ function expect() { return call_user_func_array('verify', func_get_args()); } function expect_that($truth) { expect($truth)->notEmpty(); } function expect_not($fallacy) { expect($fallacy)->isEmpty(); } } if (!function_exists('verify_file')) { /** * @param $description * @param null $actual * @return \Codeception\Verify */ function verify_file() { $verify = call_user_func_array('verify', func_get_args()); $verify->setIsFileExpectation(true); return $verify; } } if (!function_exists('expect_file')) { /** * @param $description * @param null $actual * @return \Codeception\Verify */ function expect_file() { return call_user_func_array('verify_file', func_get_args()); } }