| 1234567891011121314151617181920212223 |
- <?php
- namespace Tests\Unit;
- use Tests\TestCase;
- class LoginTest extends TestCase
- {
- /**
- * A basic test example.
- *
- * @return void
- */
- public function testLogin()
- {
- $response = $this->json('POST', '/api/login', [
- 'mobile' => 15177699090,
- 'type' => 2,
- 'sms' => 0000
- ]);
- $response->assertSuccessful();
- }
- }
|