Files
firefly-iii/tests/acceptance/Controllers/BudgetControllerTest.php

184 lines
4.8 KiB
PHP
Raw Normal View History

2016-11-19 20:30:30 +01:00
<?php
/**
2016-11-26 08:55:26 +01:00
* Generated by PHPUnit_SkeletonGenerator on 2016-11-26 at 07:52:18.
2016-11-19 20:30:30 +01:00
*/
class BudgetControllerTest extends TestCase
{
2016-11-20 07:24:18 +01:00
2016-11-19 20:30:30 +01:00
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
public function setUp()
{
2016-11-20 08:30:25 +01:00
parent::setUp();
2016-11-19 20:30:30 +01:00
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::amount
2016-11-26 08:55:26 +01:00
* Implement testAmount().
2016-11-19 20:30:30 +01:00
*/
public function testAmount()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::create
2016-11-26 08:55:26 +01:00
* Implement testCreate().
2016-11-19 20:30:30 +01:00
*/
public function testCreate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::delete
2016-11-26 08:55:26 +01:00
* Implement testDelete().
2016-11-19 20:30:30 +01:00
*/
public function testDelete()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::destroy
2016-11-26 08:55:26 +01:00
* Implement testDestroy().
2016-11-19 20:30:30 +01:00
*/
public function testDestroy()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::edit
2016-11-26 08:55:26 +01:00
* Implement testEdit().
2016-11-19 20:30:30 +01:00
*/
public function testEdit()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::index
2016-11-26 08:55:26 +01:00
* Implement testIndex().
2016-11-19 20:30:30 +01:00
*/
public function testIndex()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::noBudget
2016-11-26 08:55:26 +01:00
* Implement testNoBudget().
2016-11-19 20:30:30 +01:00
*/
public function testNoBudget()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::postUpdateIncome
2016-11-26 08:55:26 +01:00
* Implement testPostUpdateIncome().
2016-11-19 20:30:30 +01:00
*/
public function testPostUpdateIncome()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::show
2016-11-26 08:55:26 +01:00
* Implement testShow().
2016-11-19 20:30:30 +01:00
*/
public function testShow()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::showWithRepetition
2016-11-26 08:55:26 +01:00
* Implement testShowWithRepetition().
2016-11-19 20:30:30 +01:00
*/
public function testShowWithRepetition()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::store
2016-11-26 08:55:26 +01:00
* Implement testStore().
2016-11-19 20:30:30 +01:00
*/
public function testStore()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::update
2016-11-26 08:55:26 +01:00
* Implement testUpdate().
2016-11-19 20:30:30 +01:00
*/
public function testUpdate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\BudgetController::updateIncome
2016-11-26 08:55:26 +01:00
* Implement testUpdateIncome().
2016-11-19 20:30:30 +01:00
*/
public function testUpdateIncome()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
2016-11-20 11:43:19 +01:00
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
2016-11-19 20:30:30 +01:00
}