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