Project

General

Profile

Download (1.09 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 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
package eu.etaxonomy.cdm.database;
10

    
11
import java.io.FileNotFoundException;
12

    
13
import org.junit.Before;
14
import org.junit.Ignore;
15
import org.junit.Test;
16
import org.unitils.spring.annotation.SpringBeanByType;
17

    
18
import eu.etaxonomy.cdm.persistence.dao.agent.IAgentDao;
19
import eu.etaxonomy.cdm.test.integration.CdmIntegrationTest;
20

    
21
/**
22
 * @author a.mueller
23
 * @date 05.05.2015
24
 *
25
 */
26
public class WrappedCdmDataSourceTest extends CdmIntegrationTest {
27

    
28
    @SpringBeanByType
29
    private IAgentDao agentDao;
30

    
31
    /**
32
     * @throws java.lang.Exception
33
     */
34
    @Before
35
    public void setUp() throws Exception {
36
    }
37

    
38
    @Test
39
    @Ignore
40
    public void testByDatabaseMetaData() {
41
//        still needs to be implemented
42
    }
43

    
44
    @Override
45
    public void createTestDataSet() throws FileNotFoundException {};
46

    
47
}
(6-6/6)