3
3
namespace Stolt \GitUserBend \Tests \Commands ;
4
4
5
5
use Mockery ;
6
+ use PHPUnit \Framework \Attributes \Group ;
7
+ use PHPUnit \Framework \Attributes \Test ;
6
8
use Stolt \GitUserBend \Commands \AddCommand ;
7
9
use Stolt \GitUserBend \Persona ;
8
10
use Stolt \GitUserBend \Persona \Storage ;
@@ -20,7 +22,7 @@ class AddCommandTest extends TestCase
20
22
/**
21
23
* @return \Symfony\Component\Console\Application
22
24
*/
23
- protected function getApplication ()
25
+ protected function getApplication (): Application
24
26
{
25
27
$ application = new Application ();
26
28
$ application ->add (new AddCommand (new Storage (STORAGE_FILE )));
@@ -31,7 +33,7 @@ protected function getApplication()
31
33
/**
32
34
* Set up test environment.
33
35
*/
34
- protected function setUp ()
36
+ protected function setUp (): void
35
37
{
36
38
$ this ->setUpTemporaryDirectory ();
37
39
@@ -58,18 +60,16 @@ protected function setUp()
58
60
*
59
61
* @return void
60
62
*/
61
- protected function tearDown ()
63
+ protected function tearDown (): void
62
64
{
63
65
if (is_dir ($ this ->temporaryDirectory )) {
64
66
$ this ->removeDirectory ($ this ->temporaryDirectory );
65
67
}
66
68
}
67
69
68
- /**
69
- * @test
70
- * @group integration
71
- */
72
- public function addsAPersonaAsExpected ()
70
+ #[Test]
71
+ #[Group('integration ' )]
72
+ public function addsAPersonaAsExpected (): void
73
73
{
74
74
$ existingStorageContent = <<<CONTENT
75
75
[{"alias":"jo","name":"John Doe","email":"[email protected] ","usage_frequency":11},
@@ -92,14 +92,12 @@ public function addsAPersonaAsExpected()
92
92
CONTENT ;
93
93
94
94
$ this ->assertSame ($ expectedDisplay , $ commandTester ->getDisplay ());
95
- $ this -> assertTrue ( $ commandTester ->getStatusCode () == 0 );
95
+ $ commandTester ->assertCommandIsSuccessful ( );
96
96
}
97
97
98
- /**
99
- * @test
100
- * @group integration
101
- */
102
- public function returnsExpectedWarningWhenProvidedAliasIsTooLong ()
98
+ #[Test]
99
+ #[Group('integration ' )]
100
+ public function returnsExpectedWarningWhenProvidedAliasIsTooLong (): void
103
101
{
104
102
$ maxAliasLength = Persona::MAX_ALIAS_LENGTH ;
105
103
$ alias = str_repeat ('x ' , $ maxAliasLength + 1 );
@@ -119,14 +117,12 @@ public function returnsExpectedWarningWhenProvidedAliasIsTooLong()
119
117
CONTENT ;
120
118
121
119
$ this ->assertSame ($ expectedDisplay , $ commandTester ->getDisplay ());
122
- $ this ->assertTrue ($ commandTester ->getStatusCode () == 1 );
120
+ $ this ->assertTrue ($ commandTester ->getStatusCode () > 0 );
123
121
}
124
122
125
- /**
126
- * @test
127
- * @group integration
128
- */
129
- public function returnsExpectedWarningWhenProvidedEmailIsInvalid ()
123
+ #[Test]
124
+ #[Group('integration ' )]
125
+ public function returnsExpectedWarningWhenProvidedEmailIsInvalid (): void
130
126
{
131
127
$ email = 1234 ;
132
128
@@ -148,11 +144,9 @@ public function returnsExpectedWarningWhenProvidedEmailIsInvalid()
148
144
$ this ->assertTrue ($ commandTester ->getStatusCode () == 1 );
149
145
}
150
146
151
- /**
152
- * @test
153
- * @group integration
154
- */
155
- public function returnsExpectedWarningWhenPersonaAlreadyAliased ()
147
+ #[Test]
148
+ #[Group('integration ' )]
149
+ public function returnsExpectedWarningWhenPersonaAlreadyAliased (): void
156
150
{
157
151
$ existingStorageContent = <<<CONTENT
158
152
[{"alias":"jo","name":"John Doe","email":"[email protected] ","usage_frequency":11},
@@ -178,11 +172,9 @@ public function returnsExpectedWarningWhenPersonaAlreadyAliased()
178
172
$ this ->assertTrue ($ commandTester ->getStatusCode () == 1 );
179
173
}
180
174
181
- /**
182
- * @test
183
- * @group integration
184
- */
185
- public function returnsExpectedWarningWhenPersonaAliasAlreadyPresent ()
175
+ #[Test]
176
+ #[Group('integration ' )]
177
+ public function returnsExpectedWarningWhenPersonaAliasAlreadyPresent (): void
186
178
{
187
179
$ existingStorageContent = <<<CONTENT
188
180
[{"alias":"jo","name":"John Doe","email":"[email protected] ","usage_frequency":11},
@@ -208,11 +200,9 @@ public function returnsExpectedWarningWhenPersonaAliasAlreadyPresent()
208
200
$ this ->assertTrue ($ commandTester ->getStatusCode () == 1 );
209
201
}
210
202
211
- /**
212
- * @test
213
- * @group integration
214
- */
215
- public function returnsExpectedWarningWhenPersonaAdditionFails ()
203
+ #[Test]
204
+ #[Group('integration ' )]
205
+ public function returnsExpectedWarningWhenPersonaAdditionFails (): void
216
206
{
217
207
$ storage = Mockery::mock ('Stolt\GitUserBend\Persona\Storage ' );
218
208
$ application = new Application ();
0 commit comments