public function testJSendSuccess()
 {
     $response = \Response::jsendSuccess((object) ['mydata' => 'thedata']);
     $this->assertEquals('success', $response->getData()->status);
     $this->assertEquals('thedata', $response->getData()->data->mydata);
 }