Gc\View\Helper\ModulePluginTest::testCreate PHP Method

testCreate() public method

Test
public testCreate ( ) : void
return void
    public function testCreate()
    {
        $this->assertTrue($this->object->validatePlugin($this->object->create('Blog', 'CommentForm')));
        $this->assertTrue($this->object->validatePlugin($this->object->create(array('Blog', 'CommentForm'))));
        $this->assertFalse($this->object->create('Fake', 'Plugin'));
    }