Example #1
0
 /**
  * @covers Stringy::lowercaseFirst
  * @uses Stringy
  */
 public function testLowercaseFirst()
 {
     $upper = new Stringy("FOO STRING");
     $this->assertContains("fOO STRING", $upper->lowercaseFirst()->string());
 }