| Current Path : /var/www/html/hr/vendor/codeception/base/tests/data/ |
| Current File : /var/www/html/hr/vendor/codeception/base/tests/data/SimpleCest.php |
<?php
class SimpleCest
{
public $class = 'DummyClass';
public function helloWorld(\CodeGuy $I) {
$I->execute(function() { return 2+2; })
->seeResultEquals('4');
}
public function goodByeWorld(\CodeGuy $I) {
$I->execute(function() { return 2+2; })
->seeResultNotEquals('3');
}
}