Extend some test stuff.

This commit is contained in:
James Cole
2016-11-20 08:30:25 +01:00
parent f8c5c15655
commit 45e7a4576a
50 changed files with 123 additions and 116 deletions

23
test.sh
View File

@@ -10,12 +10,23 @@ TESTINGENV=./.env.testing
resetestflag='' resetestflag=''
testflag='' testflag=''
coverageflag='' coverageflag=''
acceptancetestclass=''
while getopts 'crt' flag; do while getopts 'crta:' flag; do
case "${flag}" in case "${flag}" in
r) resetestflag='true' ;; r)
t) testflag='true' ;; resetestflag='true'
c) coverageflag='true' ;; ;;
t)
testflag='true'
;;
c)
coverageflag='true'
;;
a)
acceptancetestclass=./tests/acceptance/$OPTARG
echo "Will only run acceptance test $OPTARG"
;;
*) error "Unexpected option ${flag}" ;; *) error "Unexpected option ${flag}" ;;
esac esac
done done
@@ -71,10 +82,10 @@ else
if [[ $coverageflag == "" ]] if [[ $coverageflag == "" ]]
then then
echo "Must run PHPUnit without coverage" echo "Must run PHPUnit without coverage"
phpunit phpunit $acceptancetestclass
else else
echo "Must run PHPUnit with coverage" echo "Must run PHPUnit with coverage"
phpunit --configuration phpunit.coverage.xml phpunit --configuration phpunit.coverage.xml $acceptancetestclass
fi fi
fi fi

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:07.
*/ */
class AccountControllerTest extends TestCase class AccountControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class AccountControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**
@@ -28,14 +28,12 @@ class AccountControllerTest extends TestCase
/** /**
* @covers FireflyIII\Http\Controllers\AccountController::create * @covers FireflyIII\Http\Controllers\AccountController::create
* @todo Implement testCreate().
*/ */
public function testCreate() public function testCreate()
{ {
// Remove the following lines when you implement this test. $this->be($this->user());
$this->markTestIncomplete( $this->call('GET', route('accounts.create', ['asset']));
'This test has not been implemented yet.' $this->assertResponseStatus(200);
);
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Admin;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:07.
*/ */
class ConfigurationControllerTest extends TestCase class ConfigurationControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class ConfigurationControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**
@@ -28,19 +28,17 @@ class ConfigurationControllerTest extends TestCase
} }
/** /**
* @covers FireflyIII\Http\Controllers\Admin\ConfigurationController::index * @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController::index
* @todo Implement testIndex().
*/ */
public function testIndex() public function testIndex()
{ {
// Remove the following lines when you implement this test. $this->be($this->user());
$this->markTestIncomplete( $this->call('GET', route('admin.configuration.index'));
'This test has not been implemented yet.' $this->assertResponseStatus(200);
);
} }
/** /**
* @covers FireflyIII\Http\Controllers\Admin\ConfigurationController::store * @covers \FireflyIII\Http\Controllers\Admin\ConfigurationController::store
* @todo Implement testStore(). * @todo Implement testStore().
*/ */
public function testStore() public function testStore()

View File

@@ -3,7 +3,7 @@ namespace Admin;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:07.
*/ */
class DomainControllerTest extends TestCase class DomainControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class DomainControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Admin;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:07.
*/ */
class HomeControllerTest extends TestCase class HomeControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class HomeControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Admin;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08.
*/ */
class UserControllerTest extends TestCase class UserControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class UserControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08.
*/ */
class AttachmentControllerTest extends TestCase class AttachmentControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class AttachmentControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Auth;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08.
*/ */
class ConfirmationControllerTest extends TestCase class ConfirmationControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class ConfirmationControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Auth;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:26. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08.
*/ */
class ForgotPasswordControllerTest extends TestCase class ForgotPasswordControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class ForgotPasswordControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Auth;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:27. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08.
*/ */
class LoginControllerTest extends TestCase class LoginControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class LoginControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Auth;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:27. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:08.
*/ */
class PasswordControllerTest extends TestCase class PasswordControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class PasswordControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Auth;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:27. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09.
*/ */
class RegisterControllerTest extends TestCase class RegisterControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class RegisterControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Auth;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:27. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09.
*/ */
class ResetPasswordControllerTest extends TestCase class ResetPasswordControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class ResetPasswordControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Auth;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:27. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09.
*/ */
class TwoFactorControllerTest extends TestCase class TwoFactorControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class TwoFactorControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:27. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09.
*/ */
class BillControllerTest extends TestCase class BillControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class BillControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09.
*/ */
class BudgetControllerTest extends TestCase class BudgetControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class BudgetControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09.
*/ */
class CategoryControllerTest extends TestCase class CategoryControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class CategoryControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Chart;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:09.
*/ */
class AccountControllerTest extends TestCase class AccountControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class AccountControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Chart;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10.
*/ */
class BillControllerTest extends TestCase class BillControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class BillControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Chart;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10.
*/ */
class BudgetControllerTest extends TestCase class BudgetControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class BudgetControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Chart;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10.
*/ */
class CategoryControllerTest extends TestCase class CategoryControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class CategoryControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Chart;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10.
*/ */
class CategoryReportControllerTest extends TestCase class CategoryReportControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class CategoryReportControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Chart;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:28. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10.
*/ */
class PiggyBankControllerTest extends TestCase class PiggyBankControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class PiggyBankControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Chart;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10.
*/ */
class ReportControllerTest extends TestCase class ReportControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class ReportControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:10.
*/ */
class ControllerTest extends TestCase class ControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class ControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11.
*/ */
class CurrencyControllerTest extends TestCase class CurrencyControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class CurrencyControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11.
*/ */
class ExportControllerTest extends TestCase class ExportControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class ExportControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11.
*/ */
class HelpControllerTest extends TestCase class HelpControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class HelpControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:11.
*/ */
class ImportControllerTest extends TestCase class ImportControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class ImportControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class JsonControllerTest extends TestCase class JsonControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class JsonControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:29. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class NewUserControllerTest extends TestCase class NewUserControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class NewUserControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:30. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class PiggyBankControllerTest extends TestCase class PiggyBankControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class PiggyBankControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Popup;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:30. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class ReportControllerTest extends TestCase class ReportControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class ReportControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:31. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class PreferencesControllerTest extends TestCase class PreferencesControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class PreferencesControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:31. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class ProfileControllerTest extends TestCase class ProfileControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class ProfileControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Report;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:31. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class AccountControllerTest extends TestCase class AccountControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class AccountControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Report;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:32. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:12.
*/ */
class BalanceControllerTest extends TestCase class BalanceControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class BalanceControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Report;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:32. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class BudgetControllerTest extends TestCase class BudgetControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class BudgetControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Report;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:32. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class CategoryControllerTest extends TestCase class CategoryControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class CategoryControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Report;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:32. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class InOutControllerTest extends TestCase class InOutControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class InOutControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:33. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class ReportControllerTest extends TestCase class ReportControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class ReportControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:33. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class RuleControllerTest extends TestCase class RuleControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class RuleControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:33. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class RuleGroupControllerTest extends TestCase class RuleGroupControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class RuleGroupControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:33. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class SearchControllerTest extends TestCase class SearchControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class SearchControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:33. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:13.
*/ */
class TagControllerTest extends TestCase class TagControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class TagControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Transaction;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:33. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14.
*/ */
class ConvertControllerTest extends TestCase class ConvertControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class ConvertControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Transaction;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:34. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14.
*/ */
class MassControllerTest extends TestCase class MassControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class MassControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Transaction;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:34. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14.
*/ */
class SingleControllerTest extends TestCase class SingleControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class SingleControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -3,7 +3,7 @@ namespace Transaction;
use TestCase; use TestCase;
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:34. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14.
*/ */
class SplitControllerTest extends TestCase class SplitControllerTest extends TestCase
{ {
@@ -16,7 +16,7 @@ class SplitControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**

View File

@@ -2,7 +2,7 @@
/** /**
* Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 06:10:34. * Generated by PHPUnit_SkeletonGenerator on 2016-11-20 at 07:15:14.
*/ */
class TransactionControllerTest extends TestCase class TransactionControllerTest extends TestCase
{ {
@@ -15,7 +15,7 @@ class TransactionControllerTest extends TestCase
*/ */
public function setUp() public function setUp()
{ {
parent::setUp();
} }
/** /**