2016-05-15 14:02:04 +02:00
|
|
|
<?php
|
|
|
|
|
2017-01-02 21:48:48 +01:00
|
|
|
namespace AsyncInterop\Loop;
|
2016-05-24 10:37:25 +02:00
|
|
|
|
2016-08-06 14:49:08 +02:00
|
|
|
class LoopStateTest extends \PHPUnit_Framework_TestCase
|
2016-05-16 11:33:58 +02:00
|
|
|
{
|
2016-08-06 14:49:08 +02:00
|
|
|
private $loop;
|
2016-05-15 14:02:04 +02:00
|
|
|
|
2016-05-16 11:33:58 +02:00
|
|
|
protected function setUp()
|
|
|
|
{
|
2016-08-06 14:49:08 +02:00
|
|
|
$this->loop = $this->getMockForAbstractClass(Driver::class);
|
2016-05-15 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @test */
|
2016-05-16 11:33:58 +02:00
|
|
|
public function defaultsToNull()
|
|
|
|
{
|
2016-08-06 14:49:08 +02:00
|
|
|
$this->assertNull($this->loop->getState("foobar"));
|
2016-05-15 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @dataProvider provideValues
|
|
|
|
*/
|
2016-08-06 14:49:08 +02:00
|
|
|
public function getsPreviouslySetValue($value)
|
2016-05-16 11:33:58 +02:00
|
|
|
{
|
2016-08-06 14:49:08 +02:00
|
|
|
$this->loop->setState("foobar", $value);
|
|
|
|
$this->assertSame($value, $this->loop->getState("foobar"));
|
2016-05-15 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
2016-05-16 11:33:58 +02:00
|
|
|
public function provideValues()
|
|
|
|
{
|
2016-05-15 14:02:04 +02:00
|
|
|
return [
|
|
|
|
["string"],
|
|
|
|
[42],
|
|
|
|
[1.001],
|
|
|
|
[true],
|
|
|
|
[false],
|
|
|
|
[null],
|
|
|
|
[new \StdClass],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|