16 lines
231 B
PHP
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');
|
|
}
|
|
} |