Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2013
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. /**
  2. * @see ConceptNameTagValidator#validate(Object,Errors)
  3. * @verifies confirm that a faulty conceptNameTag will not be saved
  4. */
  5. @Test
  6. public void validate_ShouldConfirmThatAFaultyConceptNameTagWillNotBeSaved() throws Exception {
  7. ConceptNameTag cnt = new ConceptNameTag();
  8. ConceptServiceImpl impl = new ConceptServiceImpl();
  9. Assert.assertTrue("falty ConceptNameTag",impl.saveConceptNameTag(cnt).equals(null));
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement