/**
  * @expectedException \Application\Exceptions\InvalidArgumentException
  */
 public function testRestoreLifeCycleStateByInvalidType()
 {
     $list = "asdasda";
     $result = $this->simMapper->restoreSuspendedLifeCycleState($list);
     $this->assertNotNull($result);
 }