File tree Expand file tree Collapse file tree 11 files changed +119
-12
lines changed
src/Test/Functional/Acceptance Expand file tree Collapse file tree 11 files changed +119
-12
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ public function _before(\CliTester $I): void
33
33
$ I ->cloneTemplateToWorkDir (static ::TEMPLATE_VERSION );
34
34
$ I ->createAuthJson ();
35
35
$ I ->createArtifactsDir ();
36
- $ I ->createArtifactCurrentTestedCode ('docker ' , '1.4.1 ' );
36
+ $ I ->createArtifactCurrentTestedCode ('docker ' , '1.4.2 ' );
37
37
$ I ->addArtifactsRepoToComposer ();
38
- $ I ->addDependencyToComposer ('magento/magento-cloud-docker ' , '1.4.1 ' );
38
+ $ I ->addDependencyToComposer ('magento/magento-cloud-docker ' , '1.4.2 ' );
39
39
40
40
$ I ->addEceToolsGitRepoToComposer ();
41
41
$ I ->addDependencyToComposer (
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ declare (strict_types=1 );
7
+
8
+ namespace Magento \CloudDocker \Test \Functional \Acceptance ;
9
+
10
+ use Robo \Exception \TaskException ;
11
+
12
+ /**
13
+ * @group php83
14
+ */
15
+ class Acceptance83Cest extends AcceptanceCest
16
+ {
17
+ /**
18
+ * Template version for testing
19
+ */
20
+ protected const TEMPLATE_VERSION = '2.4.7 ' ;
21
+ }
Original file line number Diff line number Diff line change 10
10
use Robo \Exception \TaskException ;
11
11
12
12
/**
13
- * @group php83
13
+ * @group php84
14
14
*/
15
15
class AcceptanceCest extends AbstractCest
16
16
{
17
17
/**
18
18
* Template version for testing
19
19
*/
20
- protected const TEMPLATE_VERSION = '2.4.7 ' ;
20
+ protected const TEMPLATE_VERSION = '2.4.8 ' ;
21
21
22
22
/**
23
23
* @param \CliTester $I
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ declare (strict_types=1 );
7
+
8
+ namespace Magento \CloudDocker \Test \Functional \Acceptance ;
9
+
10
+ use CliTester ;
11
+
12
+ /**
13
+ * @group php83
14
+ */
15
+ class Developer83Cest extends DeveloperCest
16
+ {
17
+ /**
18
+ * Template version for testing
19
+ */
20
+ protected const TEMPLATE_VERSION = '2.4.7 ' ;
21
+ }
Original file line number Diff line number Diff line change 10
10
use CliTester ;
11
11
12
12
/**
13
- * @group php83
13
+ * @group php84
14
14
*/
15
15
class DeveloperCest extends AbstractCest
16
16
{
17
17
/**
18
18
* Template version for testing
19
19
*/
20
- protected const TEMPLATE_VERSION = '2.4.7 ' ;
20
+ protected const TEMPLATE_VERSION = '2.4.8 ' ;
21
21
22
22
/**
23
23
* Tests that php settings contains configuration from php.dev.ini
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ declare (strict_types=1 );
7
+
8
+ namespace Magento \CloudDocker \Test \Functional \Acceptance ;
9
+
10
+ use CliTester ;
11
+ use Codeception \Example ;
12
+ use Robo \Exception \TaskException ;
13
+
14
+ /**
15
+ * @group php83
16
+ */
17
+ class Elasticsearch83Cest extends ElasticsearchCest
18
+ {
19
+ /**
20
+ * Template version for testing
21
+ */
22
+ protected const TEMPLATE_VERSION = '2.4.7 ' ;
23
+ }
Original file line number Diff line number Diff line change 12
12
use Robo \Exception \TaskException ;
13
13
14
14
/**
15
- * @group php83
15
+ * @group php84
16
16
*/
17
17
class ElasticsearchCest extends AbstractCest
18
18
{
19
19
/**
20
20
* Template version for testing
21
21
*/
22
- protected const TEMPLATE_VERSION = '2.4.7 ' ;
22
+ protected const TEMPLATE_VERSION = '2.4.8 ' ;
23
23
24
24
/**
25
25
* @param CliTester $I
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ declare (strict_types=1 );
7
+
8
+ namespace Magento \CloudDocker \Test \Functional \Acceptance ;
9
+
10
+ /**
11
+ * @group php83
12
+ */
13
+ class MailHog83Cest extends MailHogCest
14
+ {
15
+ /**
16
+ * Template version for testing
17
+ */
18
+ protected const TEMPLATE_VERSION = '2.4.7 ' ;
19
+ }
Original file line number Diff line number Diff line change 8
8
namespace Magento \CloudDocker \Test \Functional \Acceptance ;
9
9
10
10
/**
11
- * @group php83
11
+ * @group php84
12
12
*/
13
13
class MailHogCest extends AbstractCest
14
14
{
15
15
/**
16
16
* Template version for testing
17
17
*/
18
- protected const TEMPLATE_VERSION = '2.4.7 ' ;
18
+ protected const TEMPLATE_VERSION = '2.4.8 ' ;
19
19
20
20
/**
21
21
* @param \CliTester $I
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Copyright © Magento, Inc. All rights reserved.
4
+ * See COPYING.txt for license details.
5
+ */
6
+ declare (strict_types=1 );
7
+
8
+ namespace Magento \CloudDocker \Test \Functional \Acceptance ;
9
+
10
+ use CliTester ;
11
+ use Codeception \Example ;
12
+ use Robo \Exception \TaskException ;
13
+
14
+ /**
15
+ * @group php83
16
+ */
17
+ class Opensearch83Cest extends OpensearchCest
18
+ {
19
+ /**
20
+ * Template version for testing
21
+ */
22
+ protected const TEMPLATE_VERSION = '2.4.7 ' ;
23
+ }
You can’t perform that action at this time.
0 commit comments