AuthRulesTest::getSupportServicesFirm PHP Method

getSupportServicesFirm() private method

    private function getSupportServicesFirm()
    {
        $firm = ComponentStubGenerator::generate('Firm', array('subspecialtyID' => null));
        $firm->expects($this->any())->method('isSupportServicesFirm')->will($this->returnValue(true));
        return $firm;
    }
AuthRulesTest