ImboIntegrationTest\Auth\AccessControl\Adapter\AdapterTests::tearDown PHP Method

tearDown() public method

Tear down
public tearDown ( )
    public function tearDown()
    {
        $this->adapter = null;
    }

Usage Example

示例#1
0
文件: MongoTest.php 项目: imbo/imbo
 /**
  * Drop the test database after each test
  */
 public function tearDown()
 {
     if (class_exists('MongoDB\\Client')) {
         $client = new MongoClient();
         $client->dropDatabase($this->databaseName);
     }
     parent::tearDown();
 }