2023-06-15 14:10:17 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use App\Notification\Ntfy;
|
|
|
|
use Ntfy\Client;
|
|
|
|
use Ntfy\Message;
|
2023-06-16 08:08:09 +00:00
|
|
|
|
2023-06-15 14:10:17 +00:00
|
|
|
final class NtfyTest extends TestCase
|
|
|
|
{
|
2023-06-16 08:08:09 +00:00
|
|
|
public function testSend(): void
|
2023-06-15 14:10:17 +00:00
|
|
|
{
|
2023-06-16 08:08:09 +00:00
|
|
|
$client = $this->createMock(Client::class);
|
2023-06-15 14:10:17 +00:00
|
|
|
$sut = new Ntfy($client);
|
2023-06-16 08:08:09 +00:00
|
|
|
$client->expects($this->once())->method('send')->with($this->isInstanceOf(Message::class));
|
2023-06-15 14:10:17 +00:00
|
|
|
$sut->send('title','text');
|
|
|
|
}
|
|
|
|
}
|