37a2bd0e7a4d666528c55fadad8c8b681b8a9b50
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / runtime_client_embedded / javatests / src / org / xwalk / runtime / client / embedded / test / NativeFileSystemTest.java
1 // Copyright (c) 2014 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 Native File System API.
15  */
16 public class NativeFileSystemTest extends XWalkRuntimeClientTestBase {
17     // @SmallTest
18     // @Feature({"NativeFileSystem"})
19     @DisabledTest
20     public void testNativeFileSystem() throws Throwable {
21         RuntimeClientApiTestBase<XWalkRuntimeClientEmbeddedShellActivity> helper =
22                 new RuntimeClientApiTestBase<XWalkRuntimeClientEmbeddedShellActivity>(
23                         getTestUtil(), this);
24         helper.testNativeFileSystem();
25     }
26 }