Beispiel #1
0
 /**
  * This test checks the Strng's toLowerCase() method.
  *
  * @return void
  */
 public function testToLowerCase()
 {
     // initialize a new Strng instance
     $string = new Strng('MUSTERMANN1');
     // check that Strng was successfully convered to upper case
     $this->assertTrue($string->toLowerCase()->equals(new Strng('mustermann1')));
 }