Chromium Code Reviews| Index: components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/CronetUrlTest.java |
| diff --git a/components/cronet/android/sample/javatests/src/org/chromium/cronet_sample_apk/CronetSampleUrlTest.java b/components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/CronetUrlTest.java |
| similarity index 87% |
| rename from components/cronet/android/sample/javatests/src/org/chromium/cronet_sample_apk/CronetSampleUrlTest.java |
| rename to components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/CronetUrlTest.java |
| index d1aaafac4994ee4cf1765c043f2bed93aab33d7b..aa8e32ff5f65ea382187702796bed4ca0eb610fa 100644 |
| --- a/components/cronet/android/sample/javatests/src/org/chromium/cronet_sample_apk/CronetSampleUrlTest.java |
| +++ b/components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/CronetUrlTest.java |
| @@ -2,7 +2,7 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -package org.chromium.cronet_sample_apk; |
| +package org.chromium.cronet_test_apk; |
| import android.os.ConditionVariable; |
| @@ -19,14 +19,14 @@ import java.util.HashMap; |
| /** |
| * Example test that just starts the cronet sample. |
| */ |
| -public class CronetSampleUrlTest extends CronetSampleTestBase { |
| +public class CronetUrlTest extends CronetTestBase { |
| // URL used for base tests. |
| private static final String URL = "http://127.0.0.1:8000"; |
| @SmallTest |
| @Feature({"Cronet"}) |
| public void testLoadUrl() throws Exception { |
| - CronetSampleActivity activity = launchCronetSampleWithUrl(URL); |
| + CronetTestActivity activity = launchCronetTestAppWithUrl(URL); |
| // Make sure the activity was created as expected. |
| assertNotNull(activity); |
| @@ -41,7 +41,7 @@ public class CronetSampleUrlTest extends CronetSampleTestBase { |
| @SmallTest |
| @Feature({"Cronet"}) |
| public void testInvalidUrl() throws Exception { |
| - CronetSampleActivity activity = launchCronetSampleWithUrl( |
| + CronetTestActivity activity = launchCronetTestAppWithUrl( |
| "127.0.0.1:8000"); |
| // Make sure the activity was created as expected. |
| @@ -57,9 +57,9 @@ public class CronetSampleUrlTest extends CronetSampleTestBase { |
| @Feature({"Cronet"}) |
| public void testPostData() throws Exception { |
| String[] commandLineArgs = { |
| - CronetSampleActivity.POST_DATA_KEY, "test" }; |
| - CronetSampleActivity activity = |
| - launchCronetSampleWithUrlAndCommandLineArgs(URL, |
| + CronetTestActivity.POST_DATA_KEY, "test" }; |
| + CronetTestActivity activity = |
| + launchCronetTestAppWithUrlAndCommandLineArgs(URL, |
| commandLineArgs); |
|
mmenke
2014/09/11 21:10:16
nit: Fix indent
mef
2014/09/11 22:03:24
Done.
|
| // Make sure the activity was created as expected. |
| @@ -75,7 +75,7 @@ public class CronetSampleUrlTest extends CronetSampleTestBase { |
| @SmallTest |
| @Feature({"Cronet"}) |
| public void testNetLog() throws Exception { |
| - CronetSampleActivity activity = launchCronetSampleWithUrl( |
| + CronetTestActivity activity = launchCronetTestAppWithUrl( |
| "127.0.0.1:8000"); |
| // Make sure the activity was created as expected. |
| @@ -120,7 +120,7 @@ public class CronetSampleUrlTest extends CronetSampleTestBase { |
| @SmallTest |
| @Feature({"Cronet"}) |
| public void testCalledByNativeException() throws Exception { |
| - CronetSampleActivity activity = launchCronetSampleWithUrl(URL); |
| + CronetTestActivity activity = launchCronetTestAppWithUrl(URL); |
| // Make sure the activity was created as expected. |
| assertNotNull(activity); |
| @@ -143,7 +143,7 @@ public class CronetSampleUrlTest extends CronetSampleTestBase { |
| @SmallTest |
| @Feature({"Cronet"}) |
| public void testSetUploadDataWithNullContentType() throws Exception { |
| - CronetSampleActivity activity = launchCronetSampleWithUrl(URL); |
| + CronetTestActivity activity = launchCronetTestAppWithUrl(URL); |
| // Make sure the activity was created as expected. |
| assertNotNull(activity); |
| @@ -172,9 +172,9 @@ public class CronetSampleUrlTest extends CronetSampleTestBase { |
| config.enableLegacyMode(true); |
| String[] commandLineArgs = { |
| - CronetSampleActivity.CONFIG_KEY, config.toString() }; |
| - CronetSampleActivity activity = |
| - launchCronetSampleWithUrlAndCommandLineArgs(URL, |
| + CronetTestActivity.CONFIG_KEY, config.toString() }; |
| + CronetTestActivity activity = |
| + launchCronetTestAppWithUrlAndCommandLineArgs(URL, |
| commandLineArgs); |
|
mmenke
2014/09/11 21:10:16
Fix indent
mef
2014/09/11 22:03:24
Done.
|
| // Make sure the activity was created as expected. |