Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / core / javatests / src / org / xwalk / core / xwview / test / ClearHistoryTest.java
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Copyright (c) 2013 Intel Corporation. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5
6 package org.xwalk.core.xwview.test;
7
8 import android.graphics.Bitmap;
9 import android.test.suitebuilder.annotation.SmallTest;
10
11 import org.chromium.base.test.util.DisabledTest;
12 import org.chromium.base.test.util.Feature;
13 import org.xwalk.core.XWalkView;
14 import org.xwalk.core.internal.XWalkClient;
15
16 /**
17  * Test suite for clearHistory().
18  */
19 public class ClearHistoryTest extends XWalkViewTestBase {
20     @Override
21     public void setUp() throws Exception {
22         super.setUp();
23     }
24
25     // TODO(guangzhen): Since the device issue, it can not access the network,
26     // so disabled this test temporarily. It will be enabled later.
27     // @SmallTest
28     // @Feature({"ClearHistory"})
29     @DisabledTest
30     public void testClearHistory() throws Throwable {
31         /*
32         final String url1 = "http://www.webkit.org/";
33         final String url2 = "http://www.baidu.com/";
34         loadUrlSync(url1);
35         loadUrlSync(url2);
36         clearHistoryOnUiThread();
37         assertFalse(canGoBackOnUiThread());
38         */
39     }
40 }