| 1 | <?php |
||
| 10 | class GetPinCodeMessageTest extends \PHPUnit_Framework_TestCase |
||
| 11 | { |
||
| 12 | protected $request = array( |
||
| 13 | 'user' => array( |
||
| 14 | 'name' => 'Xsolla User', |
||
| 15 | 'id' => '1234567', |
||
| 16 | ), |
||
| 17 | 'notification_type' => 'get_pincode', |
||
| 18 | 'pin_code' => array( |
||
| 19 | 'digital_content' => 'test123', |
||
| 20 | 'DRM' => 'steam', |
||
| 21 | ), |
||
| 22 | ); |
||
| 23 | |||
| 24 | public function test() |
||
| 30 | } |
||
| 31 |