如果字符串值不相同,我試圖使測試用例失敗。我創建了一個類和一個方法來比較字符串值。如何在soapui的groovy類中使用testrunner.fail
public class test1 {
public String onetwo(str1,str2)
{
def first = str1
def second=str2
if (first==second)
{
return "Strings are same"
}
else
{
testrunner.fail("String Values are not same")
}
}
public String fail(reason)
{
return "implementation of method1"+reason
}
}
def objone =new test1()
def result = objone.onetwo('Soapui','Soapui')
def result1 = objone.onetwo('Soapui','SoapuiPro')
在執行它,我收到我下面消息的上面的代碼 ERROR最後一行:groovy.lang.MissingPropertyException:沒有這樣的屬性:的TestRunner類:TEST1
請建議如何使用如果字符串不相同,testrunner.fail或任何其他方式使測試用例失敗。
謝謝
'testRunner',大寫「R」! – SiKing