Example #1
0
 public function addEnvInformation(Information $information)
 {
     $this->envInformations[$information->getName()] = $information;
 }
Example #2
0
 /**
  * It should retrieve its name.
  */
 public function testGetName()
 {
     $information = new Information('foo', array());
     $this->assertEquals('foo', $information->getName());
 }