File tree 5 files changed +33
-25
lines changed
5 files changed +33
-25
lines changed Original file line number Diff line number Diff line change 1
- / bootstrap / compiled.php
1
+ # Composer ignores
2
2
/vendor
3
3
composer.phar
4
- .DS_Store
5
- .idea
4
+ composer.lock
5
+
6
+ # Framework ignores
6
7
.env
7
8
.env. * .php
8
9
.env.php
10
+ selenium.php
11
+ /bootstrap /compiled.php
12
+ .phpunit.result.cache
13
+
14
+ # Hosting ignores
9
15
php_errors.log
10
16
nginx-error.log
11
17
nginx-access.log
12
18
nginx-ssl.access.log
13
19
nginx-ssl.error.log
14
- php-errors.log
15
20
sftp-config.json
16
21
.ftpconfig
17
- selenium.php
18
- composer.lock
19
- package-lock.json
20
- /node_modules
21
- _ide_helper.php
22
22
23
- # for netbeans
23
+ # Editor ignores
24
24
nbproject
25
+ .idea
26
+ .vscode
27
+ _ide_helper.php
28
+
29
+ # Other ignores
30
+ .DS_Store
31
+ package-lock.json
32
+ /node_modules
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals = " false "
3
- backupStaticAttributes =" false"
4
- bootstrap = " tests/bootstrap.php "
5
- colors = " true "
6
- convertErrorsToExceptions =" true"
7
- convertNoticesToExceptions =" true"
8
- convertWarningsToExceptions =" true"
9
- processIsolation = " false "
10
- stopOnFailure =" false"
11
- syntaxCheck =" false"
2
+ <phpunit
3
+ backupGlobals =" false"
4
+ backupStaticAttributes = " false "
5
+ bootstrap = " tests/bootstrap.php "
6
+ colors =" true"
7
+ convertErrorsToExceptions =" true"
8
+ convertNoticesToExceptions =" true"
9
+ convertWarningsToExceptions = " true "
10
+ processIsolation =" false"
11
+ stopOnFailure =" false"
12
12
>
13
13
<testsuites >
14
14
<testsuite name =" October CMS Test Suite" >
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- class UiTestCase extends PHPUnit_Extensions_SeleniumTestCase
3
+ class UiTestCase extends PHPUnit \ Extensions \Selenium2TestCase
4
4
{
5
5
protected function setUp ()
6
6
{
Original file line number Diff line number Diff line change 4
4
5
5
class AuthManagerTest extends TestCase
6
6
{
7
- public function setUp ()
7
+ public function setUp (): void
8
8
{
9
9
$ this ->createApplication ();
10
10
@@ -23,7 +23,7 @@ public function setUp()
23
23
]);
24
24
}
25
25
26
- public function tearDown ()
26
+ public function tearDown (): void
27
27
{
28
28
AuthManager::forgetInstance ();
29
29
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class AutoDatasourceTest extends PluginTestCase
30
30
*/
31
31
public $ datasource ;
32
32
33
- public function setUp ()
33
+ public function setUp (): void
34
34
{
35
35
parent ::setUp ();
36
36
@@ -73,7 +73,7 @@ public function setUp()
73
73
]);
74
74
}
75
75
76
- public function tearDown ()
76
+ public function tearDown (): void
77
77
{
78
78
foreach ($ this ->fixtures as $ fixture ) {
79
79
$ fixture ->delete ();
You can’t perform that action at this time.
0 commit comments