Cassandra\IntegrationTestFixture::createFixture PHP 메소드

createFixture() 공개 정적인 메소드

Create the integration test fixture for performing startup and shutdown procedures required by the integration test suite.
public static createFixture ( )
    public static function createFixture()
    {
        // Ensure only one instance (singleton)
        if (!isset($instance)) {
            self::$instance = new IntegrationTestFixture();
        }
    }