be($user); $this->call('GET', '/chart/report/in-out/2015'); $this->assertResponseOk(); } /** * @covers FireflyIII\Http\Controllers\Chart\ReportController::yearInOut */ public function testYearInOutShared() { $user = FactoryMuffin::create('FireflyIII\User'); $this->be($user); $this->call('GET', '/chart/report/in-out/2015/shared'); $this->assertResponseOk(); } /** * @covers FireflyIII\Http\Controllers\Chart\ReportController::yearInOutSummarized */ public function testYearInOutSummarized() { $user = FactoryMuffin::create('FireflyIII\User'); $this->be($user); $this->call('GET', '/chart/report/in-out-sum/2015'); $this->assertResponseOk(); } /** * @covers FireflyIII\Http\Controllers\Chart\ReportController::yearInOutSummarized */ public function testYearInOutSummarizedShared() { $user = FactoryMuffin::create('FireflyIII\User'); $this->be($user); $this->call('GET', '/chart/report/in-out-sum/2015/shared'); $this->assertResponseOk(); } }