Ejemplo n.º 1
0
 public function testFliMuxSetup()
 {
     $app = new StubResolverApp();
     $app->configure(new DefaultConfiguration());
     $mux = new ResolverAppMux();
     $mux->addApp($app);
     $mux->run();
     $this->assertEquals($app->chainApp->called, 1);
 }