| 1 | <?php  | 
            ||
| 12 | class AfsRejectMessageTest extends TestCase  | 
            ||
| 13 | { | 
            ||
| 14 | protected $request = [  | 
            ||
| 15 | 'notification_type' => 'afs_reject',  | 
            ||
| 16 | 'user' => [  | 
            ||
| 17 | 'ip' => '127.0.0.1',  | 
            ||
| 18 | 'phone' => '18777976552',  | 
            ||
| 19 | 'email' => '[email protected]',  | 
            ||
| 20 | 'id' => '1234567',  | 
            ||
| 21 | 'country' => 'US'  | 
            ||
| 22 | ],  | 
            ||
| 23 | 'transaction' => [  | 
            ||
| 24 | 'id' => 87654321,  | 
            ||
| 25 | 'payment_date' => '2014-09-23T19:25:25+04:00',  | 
            ||
| 26 | 'payment_method' => 1380,  | 
            ||
| 27 | 'external_id' => 12345678  | 
            ||
| 28 | ],  | 
            ||
| 29 | 'refund_details' => [  | 
            ||
| 30 | 'code' => 4,  | 
            ||
| 31 | 'reason' => 'Potential fraud'  | 
            ||
| 32 | ]  | 
            ||
| 33 | ];  | 
            ||
| 34 | |||
| 35 | |||
| 36 | public function test()  | 
            ||
| 44 | }  | 
            ||
| 45 |