Doctrine\Tests\Common\DataFixtures\LoaderTest::testGetFixture PHP Method

testGetFixture() public method

public testGetFixture ( )
    public function testGetFixture()
    {
        $loader = new Loader();
        $loader->loadFromFile(__DIR__ . '/TestFixtures/MyFixture1.php');
        $fixture = $loader->getFixture(MyFixture1::class);
        $this->assertInstanceOf(MyFixture1::class, $fixture);
    }