/**
  * Method to test isNull().
  *
  * @return void
  *
  * @covers Windwalker\Data\DataSet::isNull
  */
 public function testIsNull()
 {
     $this->assertFalse($this->instance->isNull());
     $dataset = new DataSet();
     $this->assertTrue($dataset->isNull());
 }