be($this->user()); // $response = $this->call('GET', '/chart/budget/1'); // $this->assertEquals(200, $response->status()); $this->markTestSkipped('Skipped because sqlite does not support DATE_FORMAT.'); } /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::budgetLimit */ public function testBudgetLimit() { $this->be($this->user()); $response = $this->call('GET', '/chart/budget/1/1'); $this->assertEquals(200, $response->status()); } /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::frontpage */ public function testFrontpage() { $this->be($this->user()); $response = $this->call('GET', '/chart/budget/frontpage'); $this->assertEquals(200, $response->status()); } /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::multiYear */ public function testMultiYear() { // $this->be($this->user()); // $response = $this->call('GET', '/chart/budget/multi-year/default/20150101/20160101/1/1'); // $this->assertEquals(200, $response->status()); $this->markTestSkipped('Skipped because sqlite does not support DATE_FORMAT.'); } /** * @covers FireflyIII\Http\Controllers\Chart\BudgetController::year */ public function testYear() { // $this->be($this->user()); // $response = $this->call('GET', '/chart/budget/year/default/20150101/201512031/1'); // $this->assertEquals(200, $response->status()); $this->markTestSkipped('Skipped because sqlite does not support DATE_FORMAT.'); } }