getContainer() public static method

Get the application instance behind the facade.
public static getContainer ( ) : Illuminate\Foundation\Application
return Illuminate\Foundation\Application
 public function testDefault()
 {
     ModuleFacade::clearResolvedInstances();
     ModuleFacade::setContainer($this->container);
     try {
         ModuleFacade::getModuleName();
         $this->assertEquals(false, true);
     } catch (\RuntimeException $e) {
         $this->assertEquals(true, true);
     }
     ModuleFacade::getContainer();
     ModuleFacade::clearResolvedInstance("Task");
 }