[ 
https://issues.apache.org/jira/browse/SCB-790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16564854#comment-16564854
 ] 

ASF GitHub Bot commented on SCB-790:
------------------------------------

WillemJiang commented on a change in pull request #847: [SCB-790] integration 
test support create new target microservice instance in one node
URL: 
https://github.com/apache/incubator-servicecomb-java-chassis/pull/847#discussion_r206768774
 
 

 ##########
 File path: 
integration-tests/it-consumer/src/main/java/org/apache/servicecomb/it/testcase/base/TestDownload.java
 ##########
 @@ -0,0 +1,142 @@
+/*
+ * 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.servicecomb.it.testcase.base;
+
+import org.apache.servicecomb.it.testcase.support.DownloadSchemaIntf;
+import org.apache.servicecomb.provider.pojo.Invoker;
+import org.junit.Assert;
+import org.junit.Test;
+
+public class TestDownload {
+  private static DownloadSchemaIntf intf = Invoker
+      .createProxy("it-producer", "download", DownloadSchemaIntf.class);
+
+  static int x;
+
+  @Test
+  public void test1() {
+    x++;
+    System.out.println("test" + x);
+//    intf.tempFileEntity("abc");
+  }
+
+  @Test
+  public void test2() {
+    x++;
+    System.out.println("test2");
+    Assert.assertEquals(x, x + 1);
+  }
+//  private File dir = new File("target/download");
 
 Review comment:
   Can we remove these commented code?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> support create new target microservice instance in one node
> -----------------------------------------------------------
>
>                 Key: SCB-790
>                 URL: https://issues.apache.org/jira/browse/SCB-790
>             Project: Apache ServiceComb
>          Issue Type: Sub-task
>          Components: Java-Chassis
>            Reporter: wujimin
>            Assignee: wujimin
>            Priority: Major
>             Fix For: java-chassis-1.1.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to