forked from mybatis/mybatis-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes mybatis#1369 A correction in a test.
- Loading branch information
Showing
2 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -383,6 +383,7 @@ public void shouldExecuteBoundSelectBlogUsingConstructorWithResultMapAndProperti | |
assertEquals(101, author.getId()); | ||
assertEquals("[email protected]", author.getEmail()); | ||
assertEquals("jim", author.getUsername()); | ||
assertEquals(Section.NEWS, author.getFavouriteSection()); | ||
List<Post> posts = blog.getPosts(); | ||
assertTrue("posts should not be empty", posts != null); | ||
assertEquals(2, posts.size()); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters