BiFace_Server_Lite/vendor/codeception/base/tests/data/exception_in_before/tests/unit/failingTest.php
2020-03-27 10:13:51 +07:00

16 lines
231 B
PHP

<?php
class failingTest extends \Codeception\Test\Unit
{
/**
* @var \UnitTester
*/
protected $tester;
// tests
public function testFailing()
{
throw new \RuntimeException('in test');
}
}