/** * @covers Ringo\PhpRedmon\Model\Instance::isWorking * @covers Ringo\PhpRedmon\Model\Instance::setWorking */ public function testIsWorking() { $this->assertEquals(false, $this->object->isWorking()); $this->object->setWorking(true); $this->assertEquals(true, $this->object->isWorking()); }