mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
updated tests
This commit is contained in:
parent
7c0d6f9c09
commit
fe363932c5
@ -64,6 +64,11 @@ public class ExpressionsTest {
|
||||
assertEquals("a && b", Expressions.operation(Boolean.class, Ops.AND, a, b).toString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void Predicate() {
|
||||
assertEquals("a && b", Expressions.predicate(Ops.AND, a, b).toString());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void PathClassOfTString() {
|
||||
assertEquals("variable", Expressions.path(String.class, "variable").toString());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user