Ejemplo n.º 1
0
 public function testShuffle()
 {
     $s = new StringObject('ABCDASDAAASDADWADAASAEGA');
     $s->shuffle();
     // note: this can fail sometime because the result cannot be predicted
     $this->assertNotSame('ABC', $s->val());
 }