package org.jdom.tests;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.ui.LoadingTestRunner;

import org.jdom.IllegalNameException;
import org.jdom.Document;


public class DocumentTest extends TestCase {

  public DocumentTest(String name) {
    super(name); 
  }

  public void testConstructor() {  

  }

  public void testAddComment() {} 
  public void testAddNamespaceMapping() {} 
  public void testAddProcessingInstructionProcessingInstruction() {} 
  public void testAddProcessingInstructionMap() {} 
  public void testAddProcessingInstructionString() {}
  public void testGetContent() {} 
  public void testGetDocType() {} 
  public void testGetNamespaceMappings() {} 
  public void testGetNamespaceURI() {} 
  public void testGetProcessingInstruction() {} 
  public void testGetProcessingInstructions() {}
  public void testGetProcessingInstructionsString() {} 
  public void testGetRootElement() {} 
  public void testRemoveNamespaceMapping() {} 
  public void testRemoveProcessingInstructionProcessingInstruction() {}
  public void testRemoveProcessingInstructionString() {} 
  public void testRemoveProcessingInstructions() {} 
  public void testSetDocType() {} 
  public void testSetProcessingInstructions() {} 
  public void testSetRootElement() {}   
  public void testEquals() {}
  public void testHashcode() {}
  public void testClone() {}

  public static Test suite() { 
    return new TestSuite(DocumentTest.class); 
  }

  public static void main (String[] args) {
    String[] tests = {"org.jdom.tests.DocumentTest"};
    LoadingTestRunner.main(tests);
  }
  
}