be($this->user()); $this->call('GET', '/chart/account/expense'); $this->assertResponseStatus(200); } /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::frontpage */ public function testFrontpage() { $this->be($this->user()); $this->call('GET', '/chart/account/frontpage'); $this->assertResponseStatus(200); } /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::report */ public function testReport() { $this->be($this->user()); $this->call('GET', '/chart/account/report/default/20160101/20160131/1'); $this->assertResponseStatus(200); } /** * @covers FireflyIII\Http\Controllers\Chart\AccountController::single */ public function testSingle() { $this->be($this->user()); $this->call('GET', '/chart/account/1'); $this->assertResponseStatus(200); } }