minor
[cdmlib.git] / cdmlib-persistence / src / test / java / eu / etaxonomy / cdm / persistence / dao / hibernate / common / TermVocabularyDaoImplTest.java
1 /**
2 * Copyright (C) 2009 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.cdm.persistence.dao.hibernate.common;
11
12 import org.apache.log4j.Logger;
13 import org.junit.Before;
14 import org.junit.Ignore;
15 import org.unitils.spring.annotation.SpringBeanByType;
16
17 import eu.etaxonomy.cdm.persistence.dao.common.ITermVocabularyDao;
18 import eu.etaxonomy.cdm.test.integration.CdmIntegrationTest;
19
20 /**
21 * @author a.babadshanjan
22 * @created 10.02.2009
23 * @version 1.0
24 */
25 @Ignore
26 public class TermVocabularyDaoImplTest extends CdmIntegrationTest {
27 @SuppressWarnings("unused")
28 private static Logger logger = Logger.getLogger(TermVocabularyDaoImplTest.class);
29
30 @SpringBeanByType
31 private ITermVocabularyDao dao;
32
33 @Before
34 public void setUp() {
35 }
36
37 }