Cassandra\DatatypeIntegrationTests::createTableInsertAndVerifyValue PHP Method

createTableInsertAndVerifyValue() protected method

Create a new table with specified type and insert and verify value
protected createTableInsertAndVerifyValue ( $type, $options, $key, $value )
$type Cassandra\Type
$options Cassandra\ExecutionOptions
$key string
$value mixed
    protected function createTableInsertAndVerifyValue($type, $options, $key, $value)
    {
        $tableName = $this->createTable($type);
        $this->insertValue($tableName, $options);
        $this->verifyValue($tableName, $type, $key, $value);
    }