Youshido\Tests\Library\Config\ObjectTypeConfigTest::testInterfaces PHP Method

testInterfaces() public method

public testInterfaces ( )
    public function testInterfaces()
    {
        $testInterfaceType = new TestInterfaceType();
        $config = new ObjectTypeConfig(['name' => 'Test', 'interfaces' => [$testInterfaceType]], null, false);
        $this->assertEquals($config->getInterfaces(), [$testInterfaceType]);
    }