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