我正在使用phpunit进行测试,我真的需要HTML格式的HTML报告.请告诉我最简单的方法或代码示例.
...
!include "nsDialogs.nsh"
!include "MUI2.nsh"
!include "LogicLib.nsh"
!include "XML.nsh"
!insertmacro "UpdateXml"
...
!insertmacro MUI_UNPAGE_LICENSE "${NSISDIR}\Docs\Modern UI\License.txt"
UninstPage custom un.PageReinstall
!insertmacro MUI_UNPAGE_CONFIRM
...
Function un.PageReinstall
...
${UpdateXml} "http://127.0.0.1/123.xml" "/XML/A" $321 ; line 232
...
FunctionEnd
Run Code Online (Sandbox Code Playgroud)
NSIS日志:
!insertmacro:UpdateXmlCall Call必须与以"un"开头的函数名一起使用.在卸载部分.用法:调用function_name | [:label_name] macroline上的宏UpdateXmlCall出错5第232行脚本"G:\ Basic.nsi"出错 - 中止创建过程
怎么了?