public function testGetEnvironment()
 {
     $this->assertThat($this->object->getEnvironment(), $this->equalTo('dev'));
     $this->assertThat($this->object->getContainer()->getConstant('application.env'), $this->equalTo('dev'));
 }
Example #2
0
 public function testKernel()
 {
     $app = new \Application('dev');
     $app->boot();
     $this->assertEquals('dev', $app->getEnvironment());
 }