Skip to content

Commit 26bfa25

Browse files
committed
MCLOUD-7072: Add CLI command for generating .magento.env.yaml
1 parent f23fe9d commit 26bfa25

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

src/Test/Functional/Acceptance/RedisPhp72Cest.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@ protected function wrongConfigurationDataProvider(): array
7777
}
7878

7979
/**
80-
* @return array
81-
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
80+
* @param \CliTester $I
81+
* @param \Codeception\Example $data
82+
* @throws \Robo\Exception\TaskException
83+
* @skip
8284
*/
83-
protected function goodConfigurationDataProvider(): array
85+
public function testGoodConfiguration(\CliTester $I, \Codeception\Example $data): void
8486
{
85-
return [];
87+
return;
8688
}
8789
}

src/Test/Functional/Acceptance/RedisPhp72GoodConfigCest.php

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,24 @@
1313
class RedisPhp72GoodConfigCest extends RedisCest
1414
{
1515
/**
16-
* @return array
16+
* @param \CliTester $I
17+
* @param \Codeception\Example $data
18+
* @skip
1719
*/
18-
protected function defaultConfigurationDataProvider(): array
20+
public function testDefaultConfiguration(\CliTester $I, \Codeception\Example $data): void
1921
{
20-
return [];
22+
return;
2123
}
2224

2325
/**
24-
* @return array
26+
* @param \CliTester $I
27+
* @param \Codeception\Example $data
28+
* @throws \Robo\Exception\TaskException
29+
* @skip
2530
*/
26-
protected function wrongConfigurationDataProvider(): array
31+
public function testWrongConfiguration(\CliTester $I, \Codeception\Example $data): void
2732
{
28-
return [];
33+
return;
2934
}
3035

3136
/**

0 commit comments

Comments
 (0)