Project

General

Profile

Download (921 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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.io.jaxb;
11

    
12
import java.io.FileNotFoundException;
13

    
14
import org.junit.Ignore;
15
import org.junit.Test;
16

    
17
import eu.etaxonomy.cdm.test.integration.CdmTransactionalIntegrationTest;
18

    
19
@Ignore // only used for development, thus we exclude this from running in the suite: IGNORE
20
public class TestCdmSchemaGenerator extends CdmTransactionalIntegrationTest {
21

    
22
	@Test
23
	public void testSchemaGeneration() throws Exception {
24

    
25
		CdmSchemaGenerator cdmSchemaGenerator = new CdmSchemaGenerator();
26
		cdmSchemaGenerator.writeSchema();
27
	}
28

    
29
    @Override
30
    public void createTestDataSet() throws FileNotFoundException {}
31

    
32
}
(16-16/17)