OpenSkill\Datatable\Views\DatatableViewTest::testEndpoint PHP Метод

testEndpoint() публичный Метод

public testEndpoint ( )
    public function testEndpoint()
    {
        $this->viewFactory->shouldReceive('make')->withArgs(['fooTable', ['columns' => ['id' => 'id'], 'showHeaders' => false, 'id' => 'fooBar', 'endpoint' => '/test/endpoint/gets/set']])->times(1)->andReturn($this->view);
        $this->viewFactory->shouldReceive('make')->withArgs(['fooScript', ['id' => 'fooBar', 'columns' => ['id' => 'id'], 'options' => [], 'callbacks' => [], 'endpoint' => '/test/endpoint/gets/set']])->times(1)->andReturn($this->view);
        $this->dtv2->endpoint('/test/endpoint/gets/set');
        $this->dtv2->html();
    }