Example #1
0
 function testEmpty()
 {
     $string1 = new SafeString('');
     $this->assertTrue($string1->isEmpty());
     $string2 = new SafeString('Not Empty');
     $this->assertFalse($string2->isEmpty());
 }