Cassandra\DatatypeIntegrationTest::testDataTypes PHP 메소드

testDataTypes() 공개 메소드

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