Cassandra\BasicIntegrationTest::setUp PHP Method

setUp() protected method

Setup the database for the integration tests.
protected setUp ( )
    protected function setUp()
    {
        // Initialize the database and establish a connection
        $this->integration = new Integration(get_class(), $this->getName(false), $this->numberDC1Nodes, $this->numberDC2Nodes, $this->replicationFactor, $this->isClientAuthentication, $this->isSSL, $this->isUserDefinedAggregatesFunctions);
        $this->ccm = $this->integration->ccm;
        $this->session = $this->integration->session;
        $this->serverVersion = $this->integration->serverVersion;
        // Assign the keyspace and table name for the test
        $this->keyspaceName = strtolower($this->integration->keyspaceName);
        $this->tableNamePrefix = strtolower($this->getName(false));
    }
BasicIntegrationTest