mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-19 21:00:53 +08:00
Improve test #620
This commit is contained in:
parent
e34376842f
commit
0e6901b376
@ -110,6 +110,11 @@ public abstract class AbstractSQLTest {
|
||||
QCat catEntity = QCat.cat;
|
||||
List<Tuple> cats = query().from(cat).list(catEntity, cat.id);
|
||||
assertEquals(6, cats.size());
|
||||
|
||||
for (Tuple tuple : cats) {
|
||||
assertNotNull(tuple.get(catEntity));
|
||||
assertNotNull(tuple.get(cat.id));
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Loading…
Reference in New Issue
Block a user