route = new AccountsRoute($I); } public function testCurrent(FunctionalTester $I, Scenario $scenario) { $I = new AccountSteps($scenario); $I->loggedInAsActiveAccount(); $this->route->current(); $I->canSeeResponseCodeIs(200); $I->canSeeResponseIsJson(); $I->canSeeResponseContainsJson([ 'id' => 1, 'username' => 'Admin', 'email' => 'admin@ely.by', 'shouldChangePassword' => false, ]); } }