Cassandra\IntegrationTestFixture::createFixture PHP Method

createFixture() public static method

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();
        }
    }