Esempio n. 1
0
 /**
  * @covers \examples\statemachines\PwrCall\PwrCall::isUserRegFailState
  */
 public function testIsUserRegFailState()
 {
     $this->assertTrue($this->pwrcall->isUserRegFailState());
 }
Esempio n. 2
0
 /**
  * @covers \examples\statemachines\PwrCall\PwrCall::isUserRegFailState
  */
 public function testIsNotUserRegFailState()
 {
     $this->assertFalse($this->pwrcall->isUserRegFailState());
 }
 /**
  * @covers \examples\statemachines\PwrCall\PwrCall::userRegFailed
  * @covers \examples\statemachines\PwrCall\WaitForUserRegState::userRegFailed
  * @uses   \examples\statemachines\PwrCall\PwrCall::isUserRegFailState
  */
 public function testCanUserRegFailed()
 {
     $this->pwrcall->userRegFailed();
     $this->assertTrue($this->pwrcall->isUserRegFailState());
 }