TxAdqNewNoAdvBookControllerTest.php 413 B

12345678910111213141516171819
  1. <?php
  2. namespace Http\Controllers\QuickApp\SendOrder;
  3. use App\Http\Controllers\QuickApp\SendOrder\TxAdqNewNoAdvBookController;
  4. use PHPUnit\Framework\TestCase;
  5. class TxAdqNewNoAdvBookControllerTest extends \TestCase
  6. {
  7. public function testGetNoAdvBookInfo()
  8. {
  9. $res = $this->get('http://localhost/api/txAdqNew/noAdvBookInfo', [
  10. 'query' => []
  11. ]);
  12. $res->dump();
  13. }
  14. }