Cassandra\SchemaMetadataIntegrationTest::testBasicSchemaMetadata PHP Method

testBasicSchemaMetadata() public method

This test will ensure that the PHP driver supports schema metadata.
    public function testBasicSchemaMetadata()
    {
        // Ensure the test class session connection has schema metadata
        $this->assertGreaterThan(0, count($this->schema));
        // Ensure the test class session contains the test keyspace
        $this->assertArrayHasKey($this->keyspaceName, $this->schema->keyspaces());
        $keyspace = $this->schema->keyspace($this->keyspaceName);
    }