Skip to content

Commit d69b56f

Browse files
committed
Rename test suite
1 parent 92eadc6 commit d69b56f

File tree

10 files changed

+9
-9
lines changed

10 files changed

+9
-9
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"autoload-dev": {
3333
"psr-4": {
34-
"Tests\\Integration\\": "tests/integration/src"
34+
"Tests\\Functional\\": "tests/functional/src"
3535
}
3636
},
3737
"extra": {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
error_level: "E_ALL"
22

3-
class_name: IntegrationSuiteTester
3+
class_name: FunctionalSuiteTester
44

55
modules:
66
enabled:
77
- Arachne\Codeception\Module\NetteApplicationModule:
88
followRedirects: false
99
- Arachne\Codeception\Module\NetteDIModule:
10-
tempDir: ../_temp/integration
10+
tempDir: ../_temp/functional
1111
removeDefaultExtensions: true
1212
configFiles:
1313
- config/config.neon
File renamed without changes.

tests/integration/config/config.neon renamed to tests/functional/config/config.neon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ extensions:
55
nette.latte: Nette\Bridges\ApplicationDI\LatteExtension(%tempDir%, %debugMode%)
66

77
services:
8-
routerFactory: Tests\Integration\Fixtures\RouterFactory
8+
routerFactory: Tests\Functional\Fixtures\RouterFactory
99
router: @routerFactory::create()
1010

1111
nette.application:
1212
catchExceptions: true
1313
mapping:
14-
*: Tests\Integration\Fixtures\*Presenter
14+
*: Tests\Functional\Fixtures\*Presenter

tests/integration/src/ApplicationTest.php renamed to tests/functional/src/ApplicationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Tests\Integration;
3+
namespace Tests\Functional;
44

55
use Codeception\Test\Unit;
66
use Nette\Application\Application;

tests/integration/src/DITest.php renamed to tests/functional/src/DITest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Tests\Integration;
3+
namespace Tests\Functional;
44

55
use Codeception\Test\Unit;
66
use Nette\DI\Container;

tests/integration/src/Fixtures/ArticlePresenter.php renamed to tests/functional/src/Fixtures/ArticlePresenter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Tests\Integration\Fixtures;
3+
namespace Tests\Functional\Fixtures;
44

55
use Nette\Application\UI\Presenter;
66

tests/integration/src/Fixtures/RouterFactory.php renamed to tests/functional/src/Fixtures/RouterFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Tests\Integration\Fixtures;
3+
namespace Tests\Functional\Fixtures;
44

55
use Nette\Application\IRouter;
66
use Nette\Application\Routers\Route;

0 commit comments

Comments
 (0)