Replace all tab characters in java files with two spaces to remove linter warning
[aai/schema-service.git] / aai-schema-gen / src / test / java / org / onap / aai / schemagen / genxsd / DeleteOperationTest.java
index 9b0bae8..0f44954 100644 (file)
@@ -33,49 +33,49 @@ import static org.junit.Assert.assertThat;
 
 @RunWith(Parameterized.class)
 public class DeleteOperationTest {
-       private String useOpId;
-       private String xmlRootElementName;
-       private String tag;
-       private String path;
-       private String pathParams;
-       private String result;
+  private String useOpId;
+  private String xmlRootElementName;
+  private String tag;
+  private String path;
+  private String pathParams;
+  private String result;
 
-       @Parameters
-       public static Collection<String []> testConditions() {
-               String inputs [][] = {
-               {"NetworkGenericVnfsGenericVnf","generic-vnf","Network","/network/generic-vnfs/generic-vnf/{vnf-id}","        - name: vnf-id\n          in: path\n          description: Unique id of VNF.  This is unique across the graph.\n          required: true\n          type: string\n          example: __VNF-ID__\n","    delete:\n      tags:\n        - Network\n      summary: delete an existing generic-vnf\n      description: delete an existing generic-vnf\n      operationId: deleteNetworkGenericVnfsGenericVnf\n      consumes:\n        - application/json\n        - application/xml\n      produces:\n        - application/json\n        - application/xml\n      responses:\n        \"default\":\n          null      parameters:\n        - name: vnf-id\n          in: path\n          description: Unique id of VNF.  This is unique across the graph.\n          required: true\n          type: string\n          example: __VNF-ID__\n        - name: resource-version\n          in: query\n          description: resource-version for concurrency\n          required: true\n          type: string\n"},
-//             if ( StringUtils.isEmpty(tag) )
-               {"GenericVnf","generic-vnf","","/generic-vnf/{vnf-id}","        - name: vnf-id\n          in: path\n          description: Unique id of VNF.  This is unique across the graph.\n          required: true\n          type: string\n          example: __VNF-ID__\n",""},
-//             Test: if ( !path.endsWith("/relationship")  &&  !path.endsWith("}") )
-               {"CloudInfrastructurePserversPserverPInterfaces","p-interfaces","CloudInfrastructure","/cloud-infrastructure/pservers/pserver/{hostname}/p-interfaces","        - name: hostname\n          in: path\n          description: Value from executing hostname on the compute node.\n          required: true\n          type: string\n          example: __HOSTNAME__",""},
-//             {"","ctag-pool","","","",""},
-//             {"","pserver","","","",""},
-//             {"","oam-network","","","",""},
-//             {"","dvs-switch","","","",""},
-//             {"","availability-zone","","","",""}
-               };
-               return Arrays.asList(inputs);
-       }
+  @Parameters
+  public static Collection<String []> testConditions() {
+    String inputs [][] = {
+    {"NetworkGenericVnfsGenericVnf","generic-vnf","Network","/network/generic-vnfs/generic-vnf/{vnf-id}","        - name: vnf-id\n          in: path\n          description: Unique id of VNF.  This is unique across the graph.\n          required: true\n          type: string\n          example: __VNF-ID__\n","    delete:\n      tags:\n        - Network\n      summary: delete an existing generic-vnf\n      description: delete an existing generic-vnf\n      operationId: deleteNetworkGenericVnfsGenericVnf\n      consumes:\n        - application/json\n        - application/xml\n      produces:\n        - application/json\n        - application/xml\n      responses:\n        \"default\":\n          null      parameters:\n        - name: vnf-id\n          in: path\n          description: Unique id of VNF.  This is unique across the graph.\n          required: true\n          type: string\n          example: __VNF-ID__\n        - name: resource-version\n          in: query\n          description: resource-version for concurrency\n          required: true\n          type: string\n"},
+//    if ( StringUtils.isEmpty(tag) )
+    {"GenericVnf","generic-vnf","","/generic-vnf/{vnf-id}","        - name: vnf-id\n          in: path\n          description: Unique id of VNF.  This is unique across the graph.\n          required: true\n          type: string\n          example: __VNF-ID__\n",""},
+//    Test: if ( !path.endsWith("/relationship")  &&  !path.endsWith("}") )
+    {"CloudInfrastructurePserversPserverPInterfaces","p-interfaces","CloudInfrastructure","/cloud-infrastructure/pservers/pserver/{hostname}/p-interfaces","        - name: hostname\n          in: path\n          description: Value from executing hostname on the compute node.\n          required: true\n          type: string\n          example: __HOSTNAME__",""},
+//    {"","ctag-pool","","","",""},
+//    {"","pserver","","","",""},
+//    {"","oam-network","","","",""},
+//    {"","dvs-switch","","","",""},
+//    {"","availability-zone","","","",""}
+    };
+    return Arrays.asList(inputs);
+  }
 
-       public DeleteOperationTest(String useOpId, String xmlRootElementName, String tag, String path, String pathParams, String result) {
-               super();
-               this.useOpId = useOpId;
-               this.xmlRootElementName = xmlRootElementName;
-               this.tag = tag;
-               this.path = path;
-               this.pathParams=pathParams;
-               this.result = result;
-       }
-       @BeforeClass
-       public static void setUpBeforeClass() throws Exception {
+  public DeleteOperationTest(String useOpId, String xmlRootElementName, String tag, String path, String pathParams, String result) {
+    super();
+    this.useOpId = useOpId;
+    this.xmlRootElementName = xmlRootElementName;
+    this.tag = tag;
+    this.path = path;
+    this.pathParams=pathParams;
+    this.result = result;
+  }
+  @BeforeClass
+  public static void setUpBeforeClass() throws Exception {
 
-       }
+  }
 
-       @Test
-       public void testToString() {
-               DeleteOperation delete = new DeleteOperation(useOpId, xmlRootElementName, tag, path,  pathParams);
-               String modResult = delete.toString();
-               assertThat(modResult, is(this.result));
-       }
+  @Test
+  public void testToString() {
+    DeleteOperation delete = new DeleteOperation(useOpId, xmlRootElementName, tag, path,  pathParams);
+    String modResult = delete.toString();
+    assertThat(modResult, is(this.result));
+  }
 
 }