CmfUnitTestCase.php

Namespace

Symfony\Cmf\Component\Routing\Test

File

drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Test/CmfUnitTestCase.php
View source
<?php

namespace Symfony\Cmf\Component\Routing\Test;

class CmfUnitTestCase extends \PHPUnit_Framework_TestCase {
  protected function buildMock($class, array $methods = array()) {
    return $this
      ->getMockBuilder($class)
      ->disableOriginalConstructor()
      ->setMethods($methods)
      ->getMock();
  }

}

Classes

Namesort descending Description
CmfUnitTestCase