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 375102f commit 47ca29fCopy full SHA for 47ca29f
src/test/java/examples/animal/data/AnimalDataTest.java
@@ -181,11 +181,12 @@ public void testSelectRowsNotBetweenWithStandaloneWhereClause() {
181
AnimalDataMapper mapper = sqlSession.getMapper(AnimalDataMapper.class);
182
183
WhereClauseAndParameters whereClause = where(id, isNotBetween(10).and(60))
184
+ .or(id, isIn(25, 27))
185
.build()
186
.render(RenderingStrategy.MYBATIS3);
187
188
List<AnimalData> animals = mapper.selectByExample(whereClause);
- assertThat(animals.size()).isEqualTo(14);
189
+ assertThat(animals.size()).isEqualTo(16);
190
} finally {
191
sqlSession.close();
192
}
0 commit comments