Example #1
0
 /**
  * Tests Varien_Object->isEmpty()
  */
 public function testIsEmpty()
 {
     $this->assertTrue($this->_object->isEmpty());
     $this->_object->setData('test', 'test');
     $this->assertFalse($this->_object->isEmpty());
 }