be($this->user()); $this->changeDateRange($this->user(), $range); $response = $this->get(route('chart.bill.frontpage')); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Chart\BillController::single */ public function testSingle() { $this->be($this->user()); $response = $this->get(route('chart.bill.single', [1])); $response->assertStatus(200); } }