Beispiel #1
0
 public function testIsEmpty()
 {
     $set = new Text();
     $this->assertTrue($set->isEmpty());
     $set = new Text('');
     $this->assertTrue($set->isEmpty());
     $set = new Text('A');
     $this->assertFalse($set->isEmpty());
 }