<?php
declare(strict_types=1);

namespace FreshCloud\Mail\Tests\NetExceptions;

use FreshCloud\Mail\NetExceptions\NetworkException;
use PHPUnit\Framework\TestCase;

final class NetworkExceptionTest extends TestCase
{
    public function testExtendsRuntimeException(): void
    {
        $exception = new NetworkException('Test message');
        $this->assertInstanceOf(\RuntimeException::class, $exception);
    }
}
