route = new AccountsRoute($I); } public function testChangeEmailInitialize(FunctionalTester $I) { $I->wantTo('send current email confirmation'); $I->loggedInAsActiveAccount(); $this->route->changeEmailInitialize('password_0'); $I->canSeeResponseCodeIs(200); $I->canSeeResponseIsJson(); $I->canSeeResponseContainsJson([ 'success' => true, ]); } }