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

41 lines
948 B
PHP
Raw Normal View History

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