groovy脚本中的双字符串

时间:2014-08-12 19:48:21

标签: file groovy io soapui

我正在使用soapUI groovy脚本来编写休息响应和请求文件。 我正在使用下一个代码:

def snapShotDirTarget = context.expand( '${#Project#SnapShotDirTarget}' )
def fileDir = new File(snapShotDirTarget);
if(!fileDir .exists()) {
     fileDir .mkdirs();
} 

def currentDate = new Date().format("yyyy-MM-dd hh-mm-ss");
def fileName =  "test "+currentDate+" .txt"
def resultsFile= new File(fileDir ,fileName );  //generate file by test name and test suite

if(!resultsFile.exists()) {


    resultsFile.append("Test"+currentDate+'\n' );    //Test suite Name as header

}


resultsFile.append("Post URL:EXAMPLE"'\n' ); 

我的出局:

  

Test2014-08-12 10-43-35

     

发布网址:示例
  发布网址:示例

我不知道为什么它会将文本从if,two打印出来。

0 个答案:

没有答案