~ubuntu-branches/debian/squeeze/axis/squeeze

« back to all changes in this revision

Viewing changes to test/wsdl/selectivefilegen/AllNamespacesTestCase.java

  • Committer: Bazaar Package Importer
  • Author(s): Vladimír Lapáček
  • Date: 2006-09-06 22:31:39 UTC
  • Revision ID: james.westby@ubuntu.com-20060906223139-l7m5edxeositeppl
Tags: upstream-1.4
Import upstream version 1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2001-2004 The Apache Software Foundation.
 
3
 * 
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 * 
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 * 
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
package test.wsdl.selectivefilegen;
 
17
 
 
18
import java.io.File;
 
19
import java.util.HashSet;
 
20
import java.util.Set;
 
21
 
 
22
import test.wsdl.filegen.FileGenTestCase;
 
23
 
 
24
/**
 
25
 * This test establishes a base capability for the selective generation tests
 
26
 * whereby nothing is excluded in this test case. All files should be 
 
27
 * generated.
 
28
 
 
29
    @author Jim Stafford    jim.stafford@raba.com
 
30
*/
 
31
public class AllNamespacesTestCase extends FileGenTestCase {
 
32
 
 
33
    /**
 
34
     * List of files which should be generated.
 
35
     */
 
36
    protected Set shouldExist() {
 
37
        HashSet set = new HashSet();
 
38
        String bean1Dir = "bean1";
 
39
        String bean2Dir = "bean2";
 
40
        String servicesDir = "services";
 
41
        
 
42
        set.add(bean1Dir + File.separator + "Bean1.java");
 
43
        set.add(bean2Dir + File.separator + "Bean2.java");
 
44
        set.add(servicesDir + File.separator + "Reporter.java");
 
45
        set.add(servicesDir + File.separator + "ReporterSoapBindingImpl.java");
 
46
        set.add(servicesDir + File.separator + "ReporterSoapBindingStub.java");
 
47
        set.add(servicesDir + File.separator + "ReporterSoapBindingSkeleton.java");
 
48
        set.add(servicesDir + File.separator + "deploy.wsdd");
 
49
        set.add(servicesDir + File.separator + "undeploy.wsdd");
 
50
        return set;
 
51
    }
 
52
 
 
53
    protected String rootDir() {
 
54
        return "build" + File.separator + "work" + File.separator + 
 
55
                "test" + File.separator + "wsdl" + File.separator +
 
56
                "selectivefilegen" + File.separator +
 
57
                "allnamespaces";
 
58
    }
 
59
 
 
60
    public AllNamespacesTestCase(String name) {
 
61
        super(name);
 
62
    }
 
63
}