be($this->user()); $response = $this->get(route('chart.category.account-expense', ['1', '1', '20120101', '20120131', 0])); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Chart\CategoryReportController::accountIncome */ public function testAccountIncome() { $this->be($this->user()); $response = $this->get(route('chart.category.account-income', ['1', '1', '20120101', '20120131', 0])); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Chart\CategoryReportController::categoryExpense */ public function testCategoryExpense() { $this->be($this->user()); $response = $this->get(route('chart.category.category-expense', ['1', '1', '20120101', '20120131', 0])); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Chart\CategoryReportController::categoryIncome */ public function testCategoryIncome() { $this->be($this->user()); $response = $this->get(route('chart.category.category-income', ['1', '1', '20120101', '20120131', 0])); $response->assertStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Chart\CategoryReportController::mainChart */ public function testMainChart() { $this->be($this->user()); $response = $this->get(route('chart.category.main', ['1', '1', '20120101', '20120131'])); $response->assertStatus(200); } }