Example #1
0
 @Test
 public void testGet() {
   custService.get("zhuzhen", 2);
 }
Example #2
0
 @Test
 public void testSave() {
   custService.save("zhuzhen", 1);
 }
Example #3
0
 @Test
 public void testUpdate() {
   proxyCustService.update("zhuzhen");
 }
Example #4
0
 @Test(expected = RuntimeException.class)
 public void testDelete() {
   proxyCustService.delete("zhuzhen");
 }