ArraysTest::testRepeat PHP Method

testRepeat() public method

public testRepeat ( )
    public function testRepeat()
    {
        // Arrange
        $string = 'foo';
        // Act
        $x = __::repeat('foo', 3);
        // Assert
        $this->assertEquals(['foo', 'foo', 'foo'], $x);
    }