public function testSetGetLoadDefault()
 {
     $this->assertFalse($this->_collection->getLoadDefault());
     $this->_collection->setLoadDefault(true);
     $this->assertTrue($this->_collection->getLoadDefault());
     $this->_collection->setLoadDefault(false);
     $this->assertFalse($this->_collection->getLoadDefault());
 }