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