Upstream version 9.37.193.0
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / runtime_client / javatests / src / org / xwalk / runtime / client / 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.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.shell.XWalkRuntimeClientShellActivity;
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     public void testNativeFileSystem() throws Throwable {
20         RuntimeClientApiTestBase<XWalkRuntimeClientShellActivity> helper =
21                 new RuntimeClientApiTestBase<XWalkRuntimeClientShellActivity>(
22                         getTestUtil(), this);
23         helper.testNativeFileSystem();
24     }
25 }