Skip to content
This repository has been archived by the owner on Dec 25, 2019. It is now read-only.

Commit

Permalink
完善单测
Browse files Browse the repository at this point in the history
  • Loading branch information
crossoverJie authored and 陈杰 committed Jan 18, 2017
1 parent f152a6b commit 187a2b0
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@ public class ContentLogServiceImplTest {

@Test
public void insertSelective() throws Exception {

Content content = new Content();
content.setContent("asdsf");
content.setCreatedate("2016-12-09");
contentService.insertSelective(content);

ContentLog log = new ContentLog();
log.setContentid(content.getContentid());
log.setContent("asdsf");
log.setCreatedate("2016-12-09");
contentLogService.insertSelective(log);
Expand Down

0 comments on commit 187a2b0

Please sign in to comment.