/**
  * Tests WindForward->setWindView()
  */
 public function testSetWindView()
 {
     $windView = new WindView();
     $windView->setConfig(array('template-dir' => 'template/long', 'compile-dir' => 'compile/data'));
     $this->WindForward->setWindView($windView);
     $this->assertEquals($this->WindForward->getWindView(), $windView);
 }