class CmfUnitTestCase

Hierarchy

  • class \Symfony\Cmf\Component\Routing\Test\CmfUnitTestCase extends \Symfony\Cmf\Component\Routing\Test\PHPUnit_Framework_TestCase

Expanded class hierarchy of CmfUnitTestCase

10 files declare their use of CmfUnitTestCase
ChainRouterTest.php in drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Tests/Routing/ChainRouterTest.php
ContentAwareGeneratorTest.php in drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Tests/Routing/ContentAwareGeneratorTest.php
DynamicRouterTest.php in drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Tests/Routing/DynamicRouterTest.php
FieldByClassEnhancerTest.php in drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Tests/Enhancer/FieldByClassEnhancerTest.php
FieldMapEnhancerTest.php in drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Tests/Enhancer/FieldMapEnhancerTest.php

... See full list

File

drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Test/CmfUnitTestCase.php, line 5

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