File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 17
17
18
18
abstract class AbstractCommandTest extends KernelTestCase
19
19
{
20
- protected function setUp (): void
21
- {
22
- if ('Windows ' === \PHP_OS_FAMILY ) {
23
- $ this ->markTestSkipped ('`stty` is required to test this command. ' );
24
- }
25
- }
26
-
27
20
/**
28
21
* This helper method abstracts the boilerplate code needed to test the
29
22
* execution of a command.
Original file line number Diff line number Diff line change @@ -23,6 +23,13 @@ class AddUserCommandTest extends AbstractCommandTest
23
23
'full-name ' => 'Chuck Norris ' ,
24
24
];
25
25
26
+ protected function setUp (): void
27
+ {
28
+ if ('Windows ' === \PHP_OS_FAMILY ) {
29
+ $ this ->markTestSkipped ('`stty` is required to test this command. ' );
30
+ }
31
+ }
32
+
26
33
/**
27
34
* @dataProvider isAdminDataProvider
28
35
*
You can’t perform that action at this time.
0 commit comments