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
"A top level section of type %s and index %d was tested but only %d sections of that type existed.",
65
-
e.getTopLevelKeyword(),
66
-
e.getAttemptedIndex(),
67
-
e.getSectionCount()
54
+
"A top level section of type %s and index %d was tested but only %d sections of that type existed.",
55
+
e.getTopLevelKeyword(),
56
+
e.getAttemptedIndex(),
57
+
e.getSectionCount()
68
58
));
69
59
}
70
60
71
61
assertTrue(
72
-
sectionString.contains(containedSubstring),
73
-
String.format("The occurrence of index %d of %s section of the query did not contain a substring %s but looked like this: %s. Note that the match is case-sensitive.", sectionIndex, topLevelKeyword, containedSubstring, sectionString)
62
+
sectionString.contains(containedSubstring),
63
+
String.format("The occurrence of index %d of %s section of the query did not contain a substring %s but looked like this: %s. Note that the match is case-sensitive.", sectionIndex, topLevelKeyword, containedSubstring, sectionString)
74
64
);
75
65
}
76
66
67
+
/**
68
+
* Asserts that in ORDER BY section the given string is contained.
69
+
* This method uses the String.contains method internally and is therefore case sensitive.
70
+
*
71
+
* @param containedSubstring The substring which should be contained in ORDER BY section.
0 commit comments