Package org.dayatang.persistence.test.domain

Examples of org.dayatang.persistence.test.domain.Dictionary.save()


    @Test
    public void testValidateFailure() {
        Dictionary dictionary = new Dictionary("", "", gender);
        try {
            dictionary.save();
            repository.flush();
            fail("应抛出异常!");
        } catch (ValidationException e) {
            System.out.println(e.getMessage());
            assertTrue(true);
View Full Code Here


    @Test
    public void testValidateFailure() {
        Dictionary dictionary = new Dictionary("", "", gender);
        try {
            dictionary.save();
            repository.flush();
            fail("应抛出异常!");
        } catch (ValidationException e) {
            System.out.println(e.getMessage());
            assertTrue(true);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.