be($this->user()); $this->call('get', route('chart.report.net-worth', [1, '20120101', '20120131'])); $this->assertResponseStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Chart\ReportController::operations */ public function testOperations() { $this->be($this->user()); $this->call('get', route('chart.report.operations', [1, '20120101', '20120131'])); $this->assertResponseStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Chart\ReportController::sum */ public function testSum() { $this->be($this->user()); $this->call('get', route('chart.report.sum', [1, '20120101', '20120131'])); $this->assertResponseStatus(200); } }