OpenSkill\Datatable\Views\DatatableViewTest::testId PHP 메소드

testId() 공개 메소드

public testId ( )
    public function testId()
    {
        $this->viewFactory->shouldReceive('make')->withArgs(['fooTable', ['columns' => ['id' => 'id'], 'showHeaders' => false, 'id' => 123, 'endpoint' => '/']])->times(1)->andReturn($this->view);
        $this->dtv2->id("123");
        $this->dtv2->table();
    }