- update source.
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / runtime_client / javatests / src / org / xwalk / runtime / client / test / ScreenOrientationTest.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.test;
7
8 import android.test.suitebuilder.annotation.SmallTest;
9
10 import org.chromium.base.test.util.DisabledTest;
11 import org.chromium.base.test.util.Feature;
12 import org.xwalk.runtime.client.shell.XWalkRuntimeClientShellActivity;
13 import org.xwalk.test.util.RuntimeClientApiTestBase;
14
15 /**
16  * Test suite for W3C Screen Orientation API.
17  */
18 public class ScreenOrientationTest extends XWalkRuntimeClientTestBase {
19     // @SmallTest
20     // @Feature({"ScreenOrientationTest"})
21     @DisabledTest
22     public void testScreenOrientation() throws Throwable {
23         RuntimeClientApiTestBase<XWalkRuntimeClientShellActivity> helper =
24                 new RuntimeClientApiTestBase<XWalkRuntimeClientShellActivity>(
25                         getTestUtil(), this);
26         helper.testScreenOrientation();
27     }
28 }