We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e9a40 commit 37ed312Copy full SHA for 37ed312
src/test/java/org/javawebstack/orm/test/querybuilding/OrderByClauseTest.java
@@ -15,6 +15,7 @@
15
import static org.javawebstack.orm.test.shared.setup.ModelSetup.setUpModel;
16
import static org.junit.jupiter.api.Assertions.*;
17
18
+// This class tests the query generation for order by statements an MySQL
19
public class OrderByClauseTest {
20
21
@Test
@@ -143,6 +144,8 @@ void testMultipleOrderByClausesOfRandomOrderForCorrectOrder() throws SectionInde
143
144
/*
145
* Error Cases
146
*/
147
+
148
+ // This test might not be correct here as it does not purely look at the query
149
150
void testCannotCallOrderOnSameColumnTwice() {
151
Query<Datatype> query = setUpModel(Datatype.class).query()
0 commit comments