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