assertTrue($nullObj instanceof Zend_Pdf_Element_Null); } public function testGetType() { $nullObj = new Zend_Pdf_Element_Null(); $this->assertEquals($nullObj->getType(), Zend_Pdf_Element::TYPE_NULL); } public function testToString() { $nullObj = new Zend_Pdf_Element_Null(); $this->assertEquals($nullObj->toString(), 'null'); } }