本文主要是介绍六、撰写文档与编写测试用例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
本周的的代码方面的工作比较少,主要是编写一个测试用例,然后开始撰写相关的文档
中期报告提到,我们调用OData数据服务返回的结果是xml格式的文档,那么我们的测试用例就应该对其进行解析,这里我们采用了SimpleXml这个类
原理就是讲返回的xml文档解析成一个xml对象,然后处理其中的属性和内容
<?php$contents = file_get_contents("http://127.0.0.1/SugarCRM.svc/Contacts(id='1250c7bd-6664-6a31-b96f-53c156b9ef7e')");//print_r($contents);/*$xml = simplexml_load_string($contents);print_r($xml);$m_elements = $xml->children('m', TRUE);$m_properties = $m_elements->properties;$d_elements = $m_properties->children('d', TRUE);*/$x = new SimpleXmlElement($contents); foreach($x->entry as $t){ foreach ($t->content as $con) {$namespaces = $con->getNameSpaces(true); $m = $con->children($namespaces['m']);$m_properties = $m->properties;$namespaces1 = $m_properties->getNameSpaces(true); $d =
这篇关于六、撰写文档与编写测试用例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!