Package org.dayatang.persistence.test.domain

Examples of org.dayatang.persistence.test.domain.DictionaryCategory


        Dictionary doctor = Dictionary.get(46L);
        assertFalse(results.contains(doctor));
    }

    private DictionaryCategory createCategory(String name, int sortOrder) {
        DictionaryCategory category = new DictionaryCategory();
        category.setName(name);
        category.setSortOrder(sortOrder);
        entityManager.persist(category);
        repository.flush();
        return category;
    }
View Full Code Here

TOP

Related Classes of org.dayatang.persistence.test.domain.DictionaryCategory

Copyright © 2018 www.massapicom. 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.