public function testIsEmpty() { $this->eq(s::isEmpty(''), true); $this->eq(s::isEmpty('aaa'), false); $this->eq(s::isEmpty('0'), false); }
public function isEmpty() { return s::isEmpty($this->value); }