mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-24 21:07:26 +08:00
added new test
This commit is contained in:
parent
e6225de748
commit
b08b01d4e9
@ -43,6 +43,14 @@ public class MiniApiTest {
|
||||
myInts.add(4);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVarious(){
|
||||
for(String[] strs : from($("a"), "aa","bb","cc").from($("b"), "a","b")
|
||||
.where($("a").startsWith($("b")))
|
||||
.iterate($("a"),$("b"))){
|
||||
System.out.println(Arrays.asList(strs));
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testVarious1(){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user