Project

General

Profile

Download (1.87 KB) 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.common;
11

    
12
import static org.junit.Assert.*;
13

    
14
import org.apache.log4j.Logger;
15
import org.junit.After;
16
import org.junit.AfterClass;
17
import org.junit.Before;
18
import org.junit.BeforeClass;
19
import org.junit.Test;
20

    
21
public class XmlHelpTest {
22
	private static final Logger logger = Logger.getLogger(XmlHelpTest.class);
23

    
24
	@BeforeClass
25
	public static void setUpBeforeClass() throws Exception {
26
		logger.warn("Tests for " + XmlHelpTest.class.getName() + " not yet implemented");
27
	}
28

    
29
	@AfterClass
30
	public static void tearDownAfterClass() throws Exception {
31
	}
32

    
33
	@Before
34
	public void setUp() throws Exception {
35
	}
36

    
37
	@After
38
	public void tearDown() throws Exception {
39
	}
40
	
41
/******* TESTS *************************************/
42

    
43
	@Test
44
	public void testSaveToXmlDocumentStringStringFormat() {
45
		logger.warn("Not yet implemented"); // TODO
46
	}
47

    
48
	@Test
49
	public void testSaveToXmlDocumentOutputStreamFormat() {
50
		logger.warn("Not yet implemented"); // TODO
51
		assertTrue(true);
52
	}
53

    
54
	@Test
55
	public void testGetFirstAttributedChild() {
56
		logger.warn("Not yet implemented"); // TODO
57
	}
58

    
59
	@Test
60
	public void testGetOrAddChild() {
61
		logger.warn("Not yet implemented"); // TODO
62
	}
63

    
64
	@Test
65
	public void testInsertXmlRefProperty() {
66
		logger.warn("Not yet implemented"); // TODO
67
	}
68

    
69
	@Test
70
	public void testInsertXmlValueProperty() {
71
		logger.warn("Not yet implemented"); // TODO
72
	}
73

    
74
	@Test
75
	public void testInsertXmlBean() {
76
		logger.warn("Not yet implemented"); // TODO
77
	}
78

    
79
	@Test
80
	public void testGetRoot() {
81
		logger.warn("Not yet implemented"); // TODO
82
	}
83

    
84
}
(7-7/7)