AbstractFluentTest::testShouldGetQueryBuilder PHP Method

testShouldGetQueryBuilder() public method

    public function testShouldGetQueryBuilder()
    {
        $mockRepo = $this->app->make('MockAbstractFluent');
        $builderMethod = $this->getProtectMethod($mockRepo, 'builder');
        $this->assertInstanceOf('Illuminate\\Database\\Query\\Builder', $builderMethod->invoke($mockRepo));
    }
AbstractFluentTest