You are here

public function InstantiatorTest::testCanInstantiate in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/instantiator/tests/DoctrineTest/InstantiatorTest/InstantiatorTest.php \DoctrineTest\InstantiatorTest\InstantiatorTest::testCanInstantiate()

@dataProvider getInstantiableClasses

Parameters

string $className:

File

vendor/doctrine/instantiator/tests/DoctrineTest/InstantiatorTest/InstantiatorTest.php, line 54

Class

InstantiatorTest
Tests for { @author Marco Pivetta <ocramius@gmail.com>

Namespace

DoctrineTest\InstantiatorTest

Code

public function testCanInstantiate($className) {
  $this
    ->assertInstanceOf($className, $this->instantiator
    ->instantiate($className));
}