BaseTest::tearDown PHP Method

tearDown() public method

public tearDown ( )
    function tearDown()
    {
        self::clearTransaction();
        if ($this->needReset) {
            self::reset();
        }
    }

Usage Example

 public function tearDown()
 {
     while (($language = array_pop($this->createdLanguages)) !== null) {
         $this->languageService->deleteLanguage($language);
     }
     parent::tearDown();
 }
All Usage Examples Of BaseTest::tearDown