9 lines
156 B
PHP
9 lines
156 B
PHP
<?php
|
|
class TestSkipped extends PHPUnit_Framework_TestCase
|
|
{
|
|
protected function runTest()
|
|
{
|
|
$this->markTestSkipped('Skipped test');
|
|
}
|
|
}
|