You are here

class CmfUnitTestCase in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

... See full list

File

vendor/symfony-cmf/routing/Test/CmfUnitTestCase.php, line 14

Namespace

Symfony\Cmf\Component\Routing\Test
View source
class CmfUnitTestCase extends \PHPUnit_Framework_TestCase {
  protected function buildMock($class, array $methods = array()) {
    return $this
      ->getMockBuilder($class)
      ->disableOriginalConstructor()
      ->setMethods($methods)
      ->getMock();
  }

}

Members