registration project work

This commit is contained in:
eugenp
2014-08-13 12:10:29 +03:00
parent 8118f458bc
commit af81fa53ac
20 changed files with 213 additions and 208 deletions

View File

@@ -3,7 +3,6 @@ package org.baeldung.persistence.service;
import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic;
import org.baeldung.persistence.model.Foo;
import org.baeldung.persistence.service.IFooService;
import org.baeldung.spring.PersistenceConfig;
import org.junit.Ignore;
import org.junit.Test;
@@ -36,6 +35,7 @@ public class FooServicePersistenceIntegrationTest {
}
@Test(expected = DataIntegrityViolationException.class)
@Ignore("work in progress")
public final void whenInvalidEntityIsCreated_thenDataException() {
service.create(new Foo());
}