public function tearDown()
 {
     parent::tearDown();
     Config::reset(true);
     $this->processor = null;
 }
 public function tearDown()
 {
     parent::tearDown();
     Config::reset(true);
 }
Example #3
0
 /**
  * @expectedException EFrane\Letterpress\LetterpressException
  * @expectedExceptionMessage Config must be initialized before usage.
  */
 public function testGetNotInitialized()
 {
     Config::reset(true);
     Config::get('letterpress.locale');
 }