Laravel 5 / Codeception not routing correctly
问题 I'm trying to write an API test case for a controller function using codeception, and I'm hitting an issue where the route to the controller function does not appear to be evaluated correctly, and the evaluation seems to be different depending on what I have in my test case. Here is a code sample from my test case: use \ApiTester; class CustomerRegisterCest { // tests public function testGetRegister(ApiTester $I) { $I->sendGET('register'); $I->seeResponseCodeIs(200); } public function