public function testCanAppendValuesToArrays()
 {
     $array = Arrays::append($this->array, 'foo');
     $matcher = array('foo' => 'bar', 'bis' => 'ter', 0 => 'foo');
     $this->assertEquals($matcher, $array);
 }