You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("Expected exactly one getTestCase result with one column (got: %s)"%json.dumps(testCaseRows), file=sys.stderr)
126
132
ifany(len(row) !=1forrowinsupportModelRows):
127
133
print("Expected exactly one column in getASupportMethodModel relation (got: %s)"%json.dumps(supportModelRows), file=sys.stderr)
134
+
ifany(len(row) !=1forrowinfailedRows):
135
+
print("Expected exactly one column in getAFailedRow relation (got: %s)"%json.dumps(failedRows), file=sys.stderr)
136
+
iflen(failedRows) !=0:
137
+
print("The following rows failed to generate any test case. Check package, class and method name spelling, and argument and result specifications:\n%s"%"\n".join(r[0] forrinfailedRows), file=sys.stderr)
0 commit comments