Cassandra\DatatypeIntegrationTest::testDataTypes PHP Method

testDataTypes() public method

This test ensures that data types work with all Cassandra's scalar types.
public testDataTypes ( $type, $values )
    public function testDataTypes($type, $values)
    {
        foreach ($values as $value) {
            $this->createTableInsertAndVerifyValueByIndex($type, $value);
            $this->createTableInsertAndVerifyValueByName($type, $value);
        }
    }