65c32792362c098b347694a144a44487607b774a
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / runtime / javatests / src / org / xwalk / runtime / test / XWalkRuntimeTestBase.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.test;
7
8 import android.test.ActivityInstrumentationTestCase2;
9
10 public class XWalkRuntimeTestBase
11        extends ActivityInstrumentationTestCase2<XWalkRuntimeTestRunnerActivity> {
12
13     @Override
14     protected void setUp() throws Exception {
15         super.setUp();
16     }
17
18     public XWalkRuntimeTestBase() {
19         super(XWalkRuntimeTestRunnerActivity.class);
20     }
21 }