You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2017/01/31 15:06:41 UTC

[2/3] cxf git commit: Removing plugin test for XMLBeans

Removing plugin test for XMLBeans


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/938217b0
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/938217b0
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/938217b0

Branch: refs/heads/master
Commit: 938217b05928747f7ef0d2a8899cbc297926a4e6
Parents: 3403d79
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Tue Jan 31 13:29:00 2017 +0000
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Tue Jan 31 13:29:00 2017 +0000

----------------------------------------------------------------------
 .../wsdlto/xmlbeans/XmlbeansBindingTest.java    | 54 --------------------
 1 file changed, 54 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/938217b0/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/xmlbeans/XmlbeansBindingTest.java
----------------------------------------------------------------------
diff --git a/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/xmlbeans/XmlbeansBindingTest.java b/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/xmlbeans/XmlbeansBindingTest.java
deleted file mode 100644
index ed97c94..0000000
--- a/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/xmlbeans/XmlbeansBindingTest.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-package org.apache.cxf.tools.wsdlto.xmlbeans;
-
-import java.io.File;
-
-import org.apache.cxf.helpers.FileUtils;
-import org.apache.cxf.tools.common.ProcessorTestBase;
-import org.apache.cxf.tools.wsdlto.WSDLToJava;
-import org.junit.Test;
-
-public class XmlbeansBindingTest extends ProcessorTestBase {
-    
-    @Test
-    public void testEmbeddedSchema() throws Exception {
-        
-        try {
-            String[] args = new String[] {"-classdir",
-                                          output.getCanonicalPath() + "/classes", "-d",
-                                          output.getCanonicalPath(), "-db", "xmlbeans",
-                                          getLocation("/wsdl2java_wsdl/xmlbeanstest.wsdl")};
-            WSDLToJava.main(args);       
-            
-            File file = new File(output, "classes/schemaorg_apache_xmlbeans/system/");
-            file = new File(file.getAbsoluteFile(), file.list()[0]);
-            assertTrue(file.exists());
-            File stringListXSB = new File(file, "stringlisttype428ftype.xsb");          
-            String contents = FileUtils.getStringFromFile(stringListXSB);
-            //assertTrue(contents.indexOf("URI_SHA_1_EA71EF943F0B49ADA611FB92B3BB95A7D57BE89B" 
-            //                            + "/xmlbeanstest.wsdl") != -1);
-            assertTrue(contents.indexOf("/xmlbeanstest.wsdl") != -1);
-        } catch (Exception e) {
-            e.printStackTrace();
-        }
-        
-    }
-}