Cassandra\Type\SetTest::testCreatesSetFromValues PHP Метод

testCreatesSetFromValues() публичный Метод

    public function testCreatesSetFromValues()
    {
        $set = Type::set(Type::varchar())->create("a", "b", "c", "d", "e");
        $this->assertEquals(array("a", "b", "c", "d", "e"), $set->values());
    }