| 1 | <?php  | 
            ||
| 12 | final class ImmutableKeyValuePairTest extends TestCase  | 
            ||
| 13 | { | 
            ||
| 14 | /**  | 
            ||
| 15 | * Verify basic behavior of ImmutableKeyValuePair class.  | 
            ||
| 16 | *  | 
            ||
| 17 | * @test  | 
            ||
| 18 | * @covers ::__construct  | 
            ||
| 19 | * @covers ::getValue  | 
            ||
| 20 | * @covers ::getKey  | 
            ||
| 21 | *  | 
            ||
| 22 | * @return void  | 
            ||
| 23 | */  | 
            ||
| 24 | public function basicUsage()  | 
            ||
| 32 | |||
| 33 | /**  | 
            ||
| 34 | * Verify basic behavior of __clone().  | 
            ||
| 35 | *  | 
            ||
| 36 | * @test  | 
            ||
| 37 | * @covers ::__clone  | 
            ||
| 38 | *  | 
            ||
| 39 | * @return void  | 
            ||
| 40 | */  | 
            ||
| 41 | public function cloneObject()  | 
            ||
| 52 | }  | 
            ||
| 53 |