Example #1
0
 public function testSetGetValue()
 {
     $key = new Key();
     $this->assertNull($key->getValue());
     $key->setValue('veewee');
     $this->assertEquals('veewee', $key->getValue());
 }