Example #1
0
 public function testSetGetEnv()
 {
     $c = new Container('env');
     $this->assertEquals('env', $c->getEnvironment());
     $c->setEnvironment('production');
     $this->assertEquals('production', $c->getEnvironment());
 }