コード例 #1
0
ファイル: BaseTest.php プロジェクト: Wookashlab/MainRepo
 public function testShuffleArrayLeavesTheOriginalArrayUntouched()
 {
     $arr = array(1, 2, 3, 4, 5);
     BaseProvider::shuffleArray($arr);
     $this->assertEquals($arr, array(1, 2, 3, 4, 5));
 }