/** @test */
 public function TestFinalRenderingSolutionReturn()
 {
     $surface = new Nether\Surface();
     $surface->Start();
     $surface->ShowArea('index');
     $content = $surface->Render(true);
     $this->AssertTrue($content === 'output: this is the index page');
     return;
 }