/**
  * @covers ::isInProduction
  * @expectedException \RuntimeException
  */
 public function testIsInProductionWillThrowExceptionIfPropertyNotSet()
 {
     $application = new Application('test');
     $application->isInProduction();
 }