예제 #1
0
 public function testLength()
 {
     $str = new Str("Hello, world.");
     $this->assertEquals($str->length(), 13);
     $this->assertNotEquals($str->length(), 12);
 }