001: /*
002: * BEGIN_HEADER - DO NOT EDIT
003: *
004: * The contents of this file are subject to the terms
005: * of the Common Development and Distribution License
006: * (the "License"). You may not use this file except
007: * in compliance with the License.
008: *
009: * You can obtain a copy of the license at
010: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011: * See the License for the specific language governing
012: * permissions and limitations under the License.
013: *
014: * When distributing Covered Code, include this CDDL
015: * HEADER in each file and include the License file at
016: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017: * If applicable add the following below this CDDL HEADER,
018: * with the fields enclosed by brackets "[]" replaced with
019: * your own identifying information: Portions Copyright
020: * [year] [name of copyright owner]
021: */
022:
023: /*
024: * @(#)TestWSDLFileValidator.java
025: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026: *
027: * END_HEADER - DO NOT EDIT
028: */
029: package com.sun.jbi.binding.file.util;
030:
031: import junit.framework.Test;
032: import junit.framework.TestCase;
033: import junit.framework.TestSuite;
034:
035: /**
036: * DOCUMENT ME!
037: *
038: * @author Sun Microsystems, Inc.
039: */
040: public class TestWSDLFileValidator extends TestCase {
041: /**
042: * Creates a new TestWSDLFileValidator object.
043: *
044: * @param testName
045: */
046: public TestWSDLFileValidator(java.lang.String testName) {
047: super (testName);
048: }
049:
050: /**
051: *
052: *
053: * @return NOT YET DOCUMENTED
054: */
055: public static Test suite() {
056: TestSuite suite = new TestSuite(TestWSDLFileValidator.class);
057:
058: return suite;
059: }
060:
061: /**
062: * Test of getDocument method, of class
063: * com.sun.jbi.binding.file.util.WSDLFileValidator.
064: */
065: public void testGetDocument() {
066: // TODO add your test code below by replacing the default call to fail.
067: }
068:
069: /**
070: * Test of getError method, of class
071: * com.sun.jbi.binding.file.util.WSDLFileValidator.
072: */
073: public void testGetError() {
074: // TODO add your test code below by replacing the default call to fail.
075: }
076:
077: /**
078: * Test of getException method, of class
079: * com.sun.jbi.binding.file.util.WSDLFileValidator.
080: */
081: public void testGetException() {
082: // TODO add your test code below by replacing the default call to fail.
083: }
084:
085: /**
086: * Test of isValid method, of class
087: * com.sun.jbi.binding.file.util.WSDLFileValidator.
088: */
089: public void testIsValid() {
090: // TODO add your test code below by replacing the default call to fail.
091: }
092:
093: /**
094: * Test of validate method, of class
095: * com.sun.jbi.binding.file.util.WSDLFileValidator.
096: */
097: public void testValidate() {
098: // TODO add your test code below by replacing the default call to fail.
099: }
100:
101: // TODO add test methods here, they have to start with 'test' name.
102: // for example:
103: // public void testHello() {}
104: }
|