| 1 | <?php |
||
| 10 | class ImmutableArrayAccessTraitTest extends \PHPUnit\Framework\TestCase |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @test |
||
| 14 | * @covers ::offsetSet |
||
| 15 | * @expectedException RuntimeException |
||
| 16 | * @expectedExceptionMessage This ArrayAccess object is readonly |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | public function offsetSetIsDisabled() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @test |
||
| 28 | * @covers ::offsetUnset |
||
| 29 | * @expectedException RuntimeException |
||
| 30 | * @expectedExceptionMessage This ArrayAccess object is readonly |
||
| 31 | * |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function offsetUnsetIsDisabled() |
||
| 39 | } |
||
| 40 |