示例#1
0
 /**
  * @covers ::isEmpty
  */
 public function testIsEmpty()
 {
     $this->assertFalse($this->entityAdapter->isEmpty());
     $this->entityAdapter->setValue(NULL);
     $this->assertTrue($this->entityAdapter->isEmpty());
 }