Phue\Test\Command\SetGroupStateTest::testSend PHP Метод

testSend() публичный Метод

Test: Send command
public testSend ( )
    public function testSend()
    {
        // Build command
        $setGroupStateCmd = new SetGroupState($this->mockGroup);
        // Set expected payload
        $this->stubTransportSendRequestWithPayload((object) array('ct' => '300'));
        // Change color temp and set state
        $setGroupStateCmd->colorTemp(300)->send($this->mockClient);
    }