OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 package org.chromium.content_shell; | 5 package org.chromium.content_shell; |
6 | 6 |
7 import android.app.Activity; | 7 import android.app.Activity; |
8 import android.test.ActivityInstrumentationTestCase2; | 8 import android.test.ActivityInstrumentationTestCase2; |
9 import android.test.suitebuilder.annotation.SmallTest; | 9 import android.test.suitebuilder.annotation.SmallTest; |
10 | 10 |
| 11 import org.chromium.base.test.DisabledTest; |
| 12 |
11 /** | 13 /** |
12 * Example test that just starts the content shell. | 14 * Example test that just starts the content shell. |
13 */ | 15 */ |
14 public class ContentShellUrlTest extends ContentShellTestBase { | 16 public class ContentShellUrlTest extends ContentShellTestBase { |
15 // URL used for base tests. | 17 // URL used for base tests. |
16 private static final String URL = "data:text"; | 18 private static final String URL = "data:text"; |
17 | 19 |
18 @SmallTest | 20 @DisabledTest |
19 public void testBaseStartup() throws Exception { | 21 public void testBaseStartup() throws Exception { |
20 ContentShellActivity activity = launchContentShellWithUrl(URL); | 22 ContentShellActivity activity = launchContentShellWithUrl(URL); |
21 | 23 |
22 // Make sure the activity was created as expected. | 24 // Make sure the activity was created as expected. |
23 assertNotNull(activity); | 25 assertNotNull(activity); |
24 | 26 |
25 // Make sure that the URL is set as expected. | 27 // Make sure that the URL is set as expected. |
26 assertEquals(URL, activity.getActiveShell().getContentView().getUrl()); | 28 assertEquals(URL, activity.getActiveShell().getContentView().getUrl()); |
27 } | 29 } |
28 } | 30 } |
OLD | NEW |