Android contact@tutorialspoint.com Java XML; protected $xmlReader = null; /** * @throws Exception */ protected function setUp(): void { parent::setUp(); $this->xmlReader = $this->makeEmpty(XmlReaderInterfaces::class, [ 'tag_open' => Expected::exactly(6), 'cdata' => Expected::exactly(3), 'tag_close' => Expected::exactly(6), ]); } public function testParse() { $reader = new XmlSaxParser($this->xmlReader); $reader->parse(self::XML_DATA); } }