Ejemplo n.º 1
0
 public function testAppend()
 {
     // Arrange
     $a = [1, 2, 3];
     // Act
     $x = __::append($a, 4);
     // Assert
     $this->assertEquals([1, 2, 3, 4], $x);
 }