be($this->user()); $this->call('get', route('report-data.operations.expenses', ['1', '20120101', '20120131'])); $this->assertResponseStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Report\OperationsController::income */ public function testIncome() { $this->be($this->user()); $this->call('get', route('report-data.operations.income', ['1', '20120101', '20120131'])); $this->assertResponseStatus(200); } /** * @covers \FireflyIII\Http\Controllers\Report\OperationsController::operations */ public function testOperations() { $this->be($this->user()); $this->call('get', route('report-data.operations.operations', ['1', '20120101', '20120131'])); $this->assertResponseStatus(200); } }