d88784f1a2f9b67fdab3d3e9bc3e60bdd93a2759
[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         setXWalkClient(new XWalkViewTestBase.TestXWalkClient());
25     }
26
27     // TODO(guangzhen): Since the device issue, it can not access the network,
28     // so disabled this test temporarily. It will be enabled later.
29     // @SmallTest
30     // @Feature({"ClearHistory"})
31     @DisabledTest
32     public void testClearHistory() throws Throwable {
33         /*
34         final String url1 = "http://www.webkit.org/";
35         final String url2 = "http://www.baidu.com/";
36         loadUrlSync(url1);
37         loadUrlSync(url2);
38         clearHistoryOnUiThread();
39         assertFalse(canGoBackOnUiThread());
40         */
41     }
42 }