コード例 #1
0
ファイル: BaseTest.php プロジェクト: Wookashlab/MainRepo
 public function testShuffleStringLeavesTheOriginalStringUntouched()
 {
     $string = 'abcdef';
     BaseProvider::shuffleString($string);
     $this->assertEquals($string, 'abcdef');
 }