| 1 | <?php declare(strict_types=1); |
||
| 24 | class BucketTest extends TestCase |
||
| 25 | { |
||
| 26 | public function test() |
||
| 27 | { |
||
| 28 | $key = new stdClass(); |
||
| 29 | $value = new stdClass(); |
||
| 30 | |||
| 31 | $bucket = new Bucket($key, $value); |
||
| 32 | |||
| 33 | $this->assertSame($key, $bucket->key); |
||
| 34 | $this->assertSame($value, $bucket->value); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |