Various code cleanup.

This commit is contained in:
James Cole
2016-11-20 11:43:19 +01:00
parent 75a524c656
commit 94875adb6c
60 changed files with 544 additions and 563 deletions

View File

@@ -1,5 +1,6 @@
<?php
namespace Chart;
use TestCase;
/**
@@ -8,7 +9,6 @@ use TestCase;
class AccountControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -19,14 +19,6 @@ class AccountControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::expenseAccounts
* @todo Implement testExpenseAccounts().
@@ -98,4 +90,12 @@ class AccountControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}

View File

@@ -1,5 +1,6 @@
<?php
namespace Chart;
use TestCase;
/**
@@ -8,7 +9,6 @@ use TestCase;
class BillControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -19,14 +19,6 @@ class BillControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Chart\BillController::frontpage
* @todo Implement testFrontpage().
@@ -50,4 +42,12 @@ class BillControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}

View File

@@ -1,5 +1,6 @@
<?php
namespace Chart;
use TestCase;
/**
@@ -8,7 +9,6 @@ use TestCase;
class BudgetControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -19,14 +19,6 @@ class BudgetControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Chart\BudgetController::budget
* @todo Implement testBudget().
@@ -74,4 +66,12 @@ class BudgetControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}

View File

@@ -1,5 +1,6 @@
<?php
namespace Chart;
use TestCase;
/**
@@ -8,7 +9,6 @@ use TestCase;
class CategoryControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -19,14 +19,6 @@ class CategoryControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Chart\CategoryController::all
* @todo Implement testAll().
@@ -74,4 +66,12 @@ class CategoryControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}

View File

@@ -1,5 +1,6 @@
<?php
namespace Chart;
use TestCase;
/**
@@ -8,7 +9,6 @@ use TestCase;
class CategoryReportControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -19,14 +19,6 @@ class CategoryReportControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Chart\CategoryReportController::accountExpense
* @todo Implement testAccountExpense().
@@ -86,4 +78,12 @@ class CategoryReportControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}

View File

@@ -1,5 +1,6 @@
<?php
namespace Chart;
use TestCase;
/**
@@ -8,7 +9,6 @@ use TestCase;
class PiggyBankControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -19,14 +19,6 @@ class PiggyBankControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Chart\PiggyBankController::history
* @todo Implement testHistory().
@@ -38,4 +30,12 @@ class PiggyBankControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}

View File

@@ -1,5 +1,6 @@
<?php
namespace Chart;
use TestCase;
/**
@@ -8,7 +9,6 @@ use TestCase;
class ReportControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
@@ -19,14 +19,6 @@ class ReportControllerTest extends TestCase
parent::setUp();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers FireflyIII\Http\Controllers\Chart\ReportController::netWorth
* @todo Implement testNetWorth().
@@ -62,4 +54,12 @@ class ReportControllerTest extends TestCase
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}