Phue\Test\SoftwareUpdateTest::setUp PHP Method

setUp() public method

Set up
public setUp ( )
    public function setUp()
    {
        // Mock client
        $this->mockClient = $this->getMock('\\Phue\\Client', array('sendCommand'), array('127.0.0.1'));
        // Build stub attributes
        $this->attributes = (object) array('updatestate' => 2, 'checkforupdate' => false, 'devicetypes' => (object) array('bridge' => true, 'lights' => array('1', '2', '3')), 'url' => '', 'text' => '010000000', 'notify' => false);
        // Create software update object
        $this->softwareUpdate = new SoftwareUpdate($this->attributes, $this->mockClient);
    }