endtoend-test-psl/tests/Psl/Asio/WrappedResultTest.php

40 lines
926 B
PHP

<?php
namespace Psl\Tests\Asio;
use Psl\Asio\WrappedResult;
use PHPUnit\Framework\TestCase;
use Psl\Exception\InvariantViolationException;
class WrappedResultTest extends TestCase
{
public function testIsSucceeded(): void
{
$wrapper = new WrappedResult('hello');
$this->assertTrue($wrapper->isSucceeded());
}
public function testIsFailed(): void
{
$wrapper = new WrappedResult('hello');
$this->assertFalse($wrapper->isFailed());
}
public function testGetResult(): void
{
$wrapper = new WrappedResult('hello');
$this->assertSame('hello', $wrapper->getResult());
}
public function testGetException(): void
{
$wrapper = new WrappedResult('hello');
$this->expectException(InvariantViolationException::class);
$this->expectExceptionMessage('No exception thrown');
$wrapper->getException();
}
}