/**
  * Clean up after ourselves.
  */
 public function tearDown()
 {
     parent::tearDown();
 }
예제 #2
0
 /**
  * clean up after ourselves,
  * just delete the test view we made
  * and call the parent method
  */
 public function tearDown()
 {
     $this->view->delete();
     parent::tearDown();
 }