Example #1
0
 public function testSetGetKey()
 {
     $key = new Key();
     $this->assertNull($key->getKey());
     $key->setKey('heyo');
     $this->assertEquals('heyo', $key->getKey());
 }