Phue\Test\Command\CreateGroupTest::testLights PHP Method

testLights() public method

Test: Set lights
public testLights ( )
    public function testLights()
    {
        $command = new CreateGroup('Dummy!', array(1, 2));
        // Ensure property is set properly
        $this->assertAttributeEquals(array(1, 2), 'lights', $command);
        // Ensure self object is returned
        $this->assertEquals($command, $command->lights(array(1)));
    }