2016-12-29 21:09:49 +01:00
|
|
|
<?php
|
2016-08-16 23:39:25 +02:00
|
|
|
|
2016-07-12 18:20:06 +02:00
|
|
|
namespace Amp\Test;
|
|
|
|
|
|
|
|
use Amp\Failure;
|
|
|
|
|
|
|
|
class FailureTest extends \PHPUnit_Framework_TestCase {
|
|
|
|
/**
|
2016-08-11 21:35:58 +02:00
|
|
|
* @expectedException \TypeError
|
2016-07-12 18:20:06 +02:00
|
|
|
*/
|
|
|
|
public function testConstructWithNonException() {
|
|
|
|
$failure = new Failure(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testWhen() {
|
|
|
|
$exception = new \Exception;
|
|
|
|
|
|
|
|
$invoked = 0;
|
|
|
|
$callback = function ($exception, $value) use (&$invoked, &$reason) {
|
|
|
|
++$invoked;
|
|
|
|
$reason = $exception;
|
|
|
|
};
|
|
|
|
|
|
|
|
$success = new Failure($exception);
|
|
|
|
|
|
|
|
$success->when($callback);
|
|
|
|
|
|
|
|
$this->assertSame(1, $invoked);
|
|
|
|
$this->assertSame($exception, $reason);
|
|
|
|
}
|
|
|
|
}
|