Home
last modified time | relevance | path

Searched refs:namePrettifier (Results 1 – 1 of 1) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Util/TestDox/
DNamePrettifierTest.php13 protected $namePrettifier; variable in Util_TestDox_NamePrettifierTest
17 $this->namePrettifier = new PHPUnit_Util_TestDox_NamePrettifier;
22 $this->assertEquals('Foo', $this->namePrettifier->prettifyTestClass('FooTest'));
23 $this->assertEquals('Foo', $this->namePrettifier->prettifyTestClass('TestFoo'));
24 $this->assertEquals('Foo', $this->namePrettifier->prettifyTestClass('TestFooTest'));
25 $this->assertEquals('Foo', $this->namePrettifier->prettifyTestClass('Test\FooTest'));
30 $this->namePrettifier->setSuffix('TestCase');
31 $this->namePrettifier->setPrefix(null);
33 $this->assertEquals('Foo', $this->namePrettifier->prettifyTestClass('FooTestCase'));
34 $this->assertEquals('TestFoo', $this->namePrettifier->prettifyTestClass('TestFoo'));
[all …]