Exemplo n.º 1
0
 /**
  * @covers \examples\statemachines\PwrCall\PwrCall::isWaitForUserRegState
  */
 public function testIsNotWaitForUserRegState()
 {
     $this->assertFalse($this->pwrcall->isWaitForUserRegState());
 }
Exemplo n.º 2
0
 /**
  * @covers \examples\statemachines\PwrCall\PwrCall::reqRegState
  * @covers \examples\statemachines\PwrCall\StartUpState::reqRegState
  * @uses   \examples\statemachines\PwrCall\PwrCall::isWaitForUserRegState
  */
 public function testCanReqRegState()
 {
     $this->pwrcall->reqRegState();
     $this->assertTrue($this->pwrcall->isWaitForUserRegState());
 }