public function testRemove()
 {
     $this->assertEquals('value', Configuration::Value('property', 'test'));
     Configuration::Remove('property', 'test');
     $this->assertNull(Configuration::Value('property', 'test'));
 }