ProtobufTest\ScalarCollectionTest::testCreateScalarCollection PHP Method

testCreateScalarCollection() public method

    public function testCreateScalarCollection()
    {
        $collection = new ScalarCollection([1, 2]);
        $this->assertCount(2, $collection);
        $this->assertEquals([1, 2], $collection->getArrayCopy());
    }