class CmfUnitTestCase in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony-cmf/routing/Test/CmfUnitTestCase.php \Symfony\Cmf\Component\Routing\Test\CmfUnitTestCase
Hierarchy
- class \Symfony\Cmf\Component\Routing\Test\CmfUnitTestCase extends \Symfony\Cmf\Component\Routing\Test\PHPUnit_Framework_TestCase
Expanded class hierarchy of CmfUnitTestCase
12 files declare their use of CmfUnitTestCase
- ChainRouterTest.php in vendor/
symfony-cmf/ routing/ Tests/ Routing/ ChainRouterTest.php - ContentAwareGeneratorTest.php in vendor/
symfony-cmf/ routing/ Tests/ Routing/ ContentAwareGeneratorTest.php - DynamicRouterTest.php in vendor/
symfony-cmf/ routing/ Tests/ Routing/ DynamicRouterTest.php - FieldByClassEnhancerTest.php in vendor/
symfony-cmf/ routing/ Tests/ Enhancer/ FieldByClassEnhancerTest.php - FieldMapEnhancerTest.php in vendor/
symfony-cmf/ routing/ Tests/ Enhancer/ FieldMapEnhancerTest.php
File
- vendor/
symfony-cmf/ routing/ Test/ CmfUnitTestCase.php, line 14
Namespace
Symfony\Cmf\Component\Routing\TestView source
class CmfUnitTestCase extends \PHPUnit_Framework_TestCase {
protected function buildMock($class, array $methods = array()) {
return $this
->getMockBuilder($class)
->disableOriginalConstructor()
->setMethods($methods)
->getMock();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CmfUnitTestCase:: |
protected | function |