be($this->user()); $this->call('GET', route('admin.users.edit', [1])); $this->assertResponseStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Admin\UserController::index * Implement testIndex(). */ public function testIndex() { $this->be($this->user()); $this->call('GET', route('admin.users')); $this->assertResponseStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Admin\UserController::show * Implement testShow(). */ public function testShow() { $this->be($this->user()); $this->call('GET', route('admin.users.edit', [1])); $this->assertResponseStatus(200); } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown() { } }