* @version $Id$ */ class RendererStrategyTest extends UnitTestCase { function RendererStrategyTest() { $this->UnitTestCase('Renderer Strategy Test'); } function testHtmlFlexyRendererStrategySetupPlugins() { } function testHtmlFlexyRendererStrategyInitEngine() { } function testHtmlFlexyRendererStrategyRender() { } function xtestHtmlViewPostProcess() { $output = new SGL_Output(); $output->masterTemplate = 'home.html'; $view = new SGL_HtmlView($output, new SGL_HtmlFlexyRendererStrategy()); #$view->postProcess(); $process = new SGL_PrepareBlocks( new SGL_PrepareNavigation ( new SGL_MainProcess() )); $process->process($output); } function xtestProcessRun() { $process = new SGL_Init( new SGL_MainProcess()); $process->process($req = & SGL_Request::singleton()); } } ?>