Upstream version 8.37.183.0
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / runtime_client_embedded / javatests / src / org / xwalk / runtime / client / embedded / test / MessagingTest.java
1 // Copyright (c) 2013 Intel Corporation. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.xwalk.runtime.client.embedded.test;
6
7 import android.test.suitebuilder.annotation.SmallTest;
8 import org.chromium.base.test.util.DisabledTest;
9 import org.chromium.base.test.util.Feature;
10 import org.xwalk.runtime.client.embedded.shell.XWalkRuntimeClientEmbeddedShellActivity;
11 import org.xwalk.test.util.RuntimeClientApiTestBase;
12
13 /**
14  * Test suite for W3C SysApps Messaging Manager API.
15  */
16 public class MessagingTest extends XWalkRuntimeClientTestBase {
17     // @SmallTest
18     // @Feature({"Messaging"})
19     public void testMessaging() throws Throwable {
20         RuntimeClientApiTestBase<XWalkRuntimeClientEmbeddedShellActivity> helper =
21                 new RuntimeClientApiTestBase<XWalkRuntimeClientEmbeddedShellActivity>(
22                         getTestUtil(), this);
23         helper.testMessaging();
24     }
25 }