@@ -110,9 +110,7 @@ public function assertEvents($deployed = true, $activated = true)
110110 Event::assertNotDispatched (AfterFunctionsActivated::class);
111111 }
112112 }
113-
114- /** @test */
115- public function it_deploys_a_function_that_doesnt_exist ()
113+ public function test_it_deploys_a_function_that_doesnt_exist ()
116114 {
117115 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
118116 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -122,9 +120,7 @@ public function it_deploys_a_function_that_doesnt_exist()
122120
123121 $ this ->assertEvents ($ deployed = true , $ activated = false );
124122 }
125-
126- /** @test */
127- public function it_deploys_a_function_that_doesnt_exist_from_the_deployment_class ()
123+ public function test_it_deploys_a_function_that_doesnt_exist_from_the_deployment_class ()
128124 {
129125 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
130126 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -134,9 +130,7 @@ public function it_deploys_a_function_that_doesnt_exist_from_the_deployment_clas
134130
135131 $ this ->assertEvents ($ deployed = true , $ activated = false );
136132 }
137-
138- /** @test */
139- public function it_deploys_an_array_of_functions ()
133+ public function test_it_deploys_an_array_of_functions ()
140134 {
141135 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
142136 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -146,9 +140,7 @@ public function it_deploys_an_array_of_functions()
146140
147141 $ this ->assertEvents ($ deployed = true , $ activated = false );
148142 }
149-
150- /** @test */
151- public function it_deploys_the_functions_in_the_config ()
143+ public function test_it_deploys_the_functions_in_the_config ()
152144 {
153145 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
154146 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -162,9 +154,7 @@ public function it_deploys_the_functions_in_the_config()
162154
163155 $ this ->assertEvents ($ deployed = true , $ activated = false );
164156 }
165-
166- /** @test */
167- public function it_deploys_and_activates_a_function_that_doesnt_exist ()
157+ public function test_it_deploys_and_activates_a_function_that_doesnt_exist ()
168158 {
169159 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
170160 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -175,9 +165,7 @@ public function it_deploys_and_activates_a_function_that_doesnt_exist()
175165
176166 $ this ->assertEvents ($ deployed = true , $ activated = true );
177167 }
178-
179- /** @test */
180- public function it_updates_an_existing_function ()
168+ public function test_it_updates_an_existing_function ()
181169 {
182170 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
183171 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -189,9 +177,7 @@ public function it_updates_an_existing_function()
189177
190178 $ this ->assertEvents ($ deployed = true , $ activated = false );
191179 }
192-
193- /** @test */
194- public function it_updates_and_activates_an_existing_function ()
180+ public function test_it_updates_and_activates_an_existing_function ()
195181 {
196182 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
197183 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -204,9 +190,7 @@ public function it_updates_and_activates_an_existing_function()
204190
205191 $ this ->assertEvents ($ deployed = true , $ activated = true );
206192 }
207-
208- /** @test */
209- public function it_sets_environment_variables ()
193+ public function test_it_sets_environment_variables ()
210194 {
211195 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
212196 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -245,9 +229,7 @@ public function it_sets_environment_variables()
245229
246230 $ this ->assertEvents ($ deployed = true , $ activated = true );
247231 }
248-
249- /** @test */
250- public function it_doesnt_change_variables_that_havent_changed ()
232+ public function test_it_doesnt_change_variables_that_havent_changed ()
251233 {
252234 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (true );
253235 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -271,9 +253,7 @@ public function it_doesnt_change_variables_that_havent_changed()
271253
272254 $ this ->assertEvents ($ deployed = true , $ activated = true );
273255 }
274-
275- /** @test */
276- public function it_sets_function_tags ()
256+ public function test_it_sets_function_tags ()
277257 {
278258 $ this ->lambda ->shouldReceive ('functionExists ' )->andReturn (false );
279259 $ this ->lambda ->shouldReceive ('getVersions ' )->andReturn ([]);
@@ -324,9 +304,7 @@ public function it_sets_function_tags()
324304
325305 $ this ->assertEvents ($ deployed = true , $ activated = true );
326306 }
327-
328- /** @test */
329- public function it_throws_an_exception_if_there_are_no_functions ()
307+ public function test_it_throws_an_exception_if_there_are_no_functions ()
330308 {
331309 config ()->set ('sidecar.functions ' , [
332310
0 commit comments