@@ -35,8 +35,7 @@ public function setUp(): void
3535 $ this ->channel = new InterfaxChannel ($ this ->interfax );
3636 }
3737
38- /** @test */
39- public function it_can_send_notification_with_a_single_file ()
38+ public function test_send_notification_with_a_single_file ()
4039 {
4140 $ this ->interfax ->expects ('deliver ' )
4241 ->once ()
@@ -55,8 +54,7 @@ public function it_can_send_notification_with_a_single_file()
5554 $ this ->channel ->send (new TestNotifiable , new TestNotificationWithSingleFile );
5655 }
5756
58- /** @test */
59- public function it_can_send_notification_with_files ()
57+ public function test_send_notification_with_files ()
6058 {
6159 $ this ->interfax ->expects ('deliver ' )
6260 ->once ()
@@ -81,8 +79,7 @@ public function it_can_send_notification_with_files()
8179 $ this ->channel ->send (new TestNotifiable , new TestNotificationWithFiles );
8280 }
8381
84- /** @test */
85- public function it_can_send_notification_pdf_as_stream ()
82+ public function test_send_notification_pdf_as_stream ()
8683 {
8784 $ this ->interfax ->expects ('deliver ' )
8885 ->with (Mockery::on (function ($ output ) {
@@ -110,8 +107,7 @@ public function it_can_send_notification_pdf_as_stream()
110107 $ this ->channel ->send (new TestNotifiable , new TestNotificationAsStreamPdf );
111108 }
112109
113- /** @test */
114- public function it_can_send_notification_html_as_stream ()
110+ public function test_send_notification_html_as_stream ()
115111 {
116112 $ filename = 'test-file.html ' ;
117113 $ this ->addFile ($ filename );
@@ -144,14 +140,12 @@ public function it_can_send_notification_html_as_stream()
144140 $ this ->channel ->send (new TestNotifiable , new TestNotificationAsStreamHtml );
145141 }
146142
147- /** @test */
148- public function it_can_return_early_when_no_fax_number_provided ()
143+ public function test_return_early_when_no_fax_number_provided ()
149144 {
150145 $ this ->assertNull ($ this ->channel ->send (new TestNotifiableNotSendable , new TestNotificationWithFiles ));
151146 }
152147
153- /** @test */
154- public function it_can_refresh_the_file_response ()
148+ public function test_refresh_the_file_response ()
155149 {
156150 $ this ->resource
157151 ->expects ('refresh ' )
@@ -169,8 +163,7 @@ public function it_can_refresh_the_file_response()
169163 $ this ->channel ->send (new TestNotifiable , new TestNotificationWithRefresh );
170164 }
171165
172- /** @test */
173- public function it_can_throw_the_exception ()
166+ public function test_throw_the_exception ()
174167 {
175168 $ this ->expectException (CouldNotSendNotification::class);
176169
0 commit comments