Example #1
0
 public function testIsLower()
 {
     $this->eq(s::isLower('a'), true);
     $this->eq(s::isLower('A'), false);
     $this->eq(s::isLower('abcdef'), true);
     $this->eq(s::isLower('ABCDEF'), false);
     $this->eq(s::isLower('abcDEF'), false);
     $this->eq(s::isLower(''), false);
 }
Example #2
0
 public function isLower()
 {
     return s::isLower($this->value);
 }