assertEquals(false, $etemplate->read('totally invalid'), 'Reading invalid template'); // Templates must be in the correct templates directory - use one from API $this->assertEquals(true, $etemplate->read('api.prompt')); } public function testSetDOMId() { $etemplate = new Etemplate(); /* Etemplate::$response = $this->getMockBuilder(Etemplate\Api\Json\Response) ->disableOriginalConstructor() ->setMethods(['generic']) ->getMock($etemplate); Etemplate::$response->expects($this->once()) ->method('generic'); */ $etemplate->set_dom_id('test_id'); $this->markTestIncomplete( 'This test has not been implemented yet.' ); } public function testArrayMerge() { $this->markTestIncomplete( 'This test has not been implemented yet.' ); } public function testExec() { $this->markTestIncomplete( 'This test has not been implemented yet.' ); } }