Pantheon\Terminus\UnitTests\Collections\BranchesTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        $this->site = $this->getMockBuilder(Site::class)->disableOriginalConstructor()->getMock();
        $this->collection = new Branches(['site' => $this->site]);
        $this->collection->setRequest($this->request);
    }
BranchesTest