LoginTest.php 399 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Tests\Unit;
  3. use Tests\TestCase;
  4. class LoginTest extends TestCase
  5. {
  6. /**
  7. * A basic test example.
  8. *
  9. * @return void
  10. */
  11. public function testLogin()
  12. {
  13. $response = $this->json('POST', '/api/login', [
  14. 'mobile' => 15177699090,
  15. 'type' => 2,
  16. 'sms' => 0000
  17. ]);
  18. $response->assertSuccessful();
  19. }
  20. }