Cassandra\Type\SetTest::testCreatesSetFromValues PHP Méthode

testCreatesSetFromValues() public méthode

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