Upstream version 8.36.171.0
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / runtime_client_embedded / javatests / src / org / xwalk / runtime / client / embedded / test / PauseResumeTest.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.runtime.client.embedded.test;
7
8 import android.test.suitebuilder.annotation.SmallTest;
9 import org.chromium.base.test.util.DisabledTest;
10 import org.chromium.base.test.util.Feature;
11 import org.xwalk.runtime.client.embedded.shell.XWalkRuntimeClientEmbeddedShellActivity;
12 import org.xwalk.test.util.RuntimeClientApiTestBase;
13
14 /**
15  * Test suite for onPause(), onResume().
16  */
17 public class PauseResumeTest extends XWalkRuntimeClientTestBase {
18
19     // @SmallTest
20     // @Feature({"PauseResume"})
21     @DisabledTest
22     public void testPauseAndResume() throws Throwable {
23         RuntimeClientApiTestBase<XWalkRuntimeClientEmbeddedShellActivity> helper =
24                 new RuntimeClientApiTestBase<XWalkRuntimeClientEmbeddedShellActivity>(
25                         getTestUtil(), this);
26         helper.testPauseAndResume();
27     }
28 }