b75a2c26f75b82d2baf7a60cf44ab79b7fb47968
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / runtime_client / javatests / src / org / xwalk / runtime / client / test / XWalkRuntimeClientTestBase.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.app.Activity;
9 import android.test.ActivityInstrumentationTestCase2;
10
11 import org.xwalk.app.runtime.XWalkRuntimeClient;
12 import org.xwalk.runtime.client.shell.XWalkRuntimeClientShellActivity;
13 import org.xwalk.test.util.XWalkRuntimeClientTestGeneric;
14 import org.xwalk.test.util.XWalkRuntimeClientTestUtilBase;
15 import org.xwalk.test.util.XWalkRuntimeClientTestUtilBase.PageStatusCallback;
16
17 public class XWalkRuntimeClientTestBase
18         extends XWalkRuntimeClientTestGeneric<XWalkRuntimeClientShellActivity> {
19
20     public XWalkRuntimeClientTestBase() {
21         super(XWalkRuntimeClientShellActivity.class);
22     }
23
24     @Override
25     public void postSetUp() {
26     }
27 }