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

193 lines
5.1 KiB
PHP
Raw Normal View History

2016-11-19 20:30:30 +01:00
<?php
2016-12-06 09:16:36 +01:00
/**
* JsonControllerTest.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-11-19 20:30:30 +01:00
/**
2016-12-06 09:16:36 +01:00
* Generated by PHPUnit_SkeletonGenerator on 2016-12-06 at 08:13:20.
2016-11-19 20:30:30 +01:00
*/
class JsonControllerTest 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\JsonController::action
2016-11-26 08:55:26 +01:00
* Implement testAction().
2016-11-19 20:30:30 +01:00
*/
public function testAction()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::boxBillsPaid
2016-11-26 08:55:26 +01:00
* Implement testBoxBillsPaid().
2016-11-19 20:30:30 +01:00
*/
public function testBoxBillsPaid()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::boxBillsUnpaid
2016-11-26 08:55:26 +01:00
* Implement testBoxBillsUnpaid().
2016-11-19 20:30:30 +01:00
*/
public function testBoxBillsUnpaid()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::boxIn
2016-11-26 08:55:26 +01:00
* Implement testBoxIn().
2016-11-19 20:30:30 +01:00
*/
public function testBoxIn()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::boxOut
2016-11-26 08:55:26 +01:00
* Implement testBoxOut().
2016-11-19 20:30:30 +01:00
*/
public function testBoxOut()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::categories
2016-11-26 08:55:26 +01:00
* Implement testCategories().
2016-11-19 20:30:30 +01:00
*/
public function testCategories()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::endTour
2016-11-26 08:55:26 +01:00
* Implement testEndTour().
2016-11-19 20:30:30 +01:00
*/
public function testEndTour()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::expenseAccounts
2016-11-26 08:55:26 +01:00
* Implement testExpenseAccounts().
2016-11-19 20:30:30 +01:00
*/
public function testExpenseAccounts()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::revenueAccounts
2016-11-26 08:55:26 +01:00
* Implement testRevenueAccounts().
2016-11-19 20:30:30 +01:00
*/
public function testRevenueAccounts()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::tags
2016-11-26 08:55:26 +01:00
* Implement testTags().
2016-11-19 20:30:30 +01:00
*/
public function testTags()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::tour
2016-11-26 08:55:26 +01:00
* Implement testTour().
2016-11-19 20:30:30 +01:00
*/
public function testTour()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::transactionJournals
2016-11-26 08:55:26 +01:00
* Implement testTransactionJournals().
2016-11-19 20:30:30 +01:00
*/
public function testTransactionJournals()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\JsonController::trigger
2016-11-26 08:55:26 +01:00
* Implement testTrigger().
2016-11-19 20:30:30 +01:00
*/
public function testTrigger()
{
// 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
}