Skip to content

Commit 5491a48

Browse files
Remove OrderBy specific contains method
1 parent ac7140e commit 5491a48

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/test/java/org/javawebstack/orm/test/shared/verification/QueryVerification.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,6 @@ public void assertSectionContains(String topLevelKeyword, String containedSubstr
5959
);
6060
}
6161

62-
/**
63-
* Asserts that in ORDER BY section the given string is contained.
64-
* This method uses the String.contains method internally and is therefore case sensitive.
65-
*
66-
* @param containedSubstring The substring which should be contained in ORDER BY section.
67-
*/
68-
public void assertOrderByContains(String containedSubstring) {
69-
this.assertSectionContains("ORDER BY", containedSubstring);
70-
}
71-
7262
/**
7363
* Asserts that the first occurring section of a given top level keyword is equal to the given string.
7464
* This method uses the String.equals method internally and is therefore case sensitive.

0 commit comments

Comments
 (0)