/**
  * @test
  * 
  * @dataProvider provideMarkXXXMethods
  */
 public function shouldAllowGetMarkedStatus($markXXXMethod)
 {
     $statusRequest = new SimpleStatusRequest(new \stdClass());
     $statusRequest->{$markXXXMethod}();
     $this->assertNotEmpty($statusRequest->getStatus());
 }