blob: 02b81c890d5db9659d41c5e670d918ed2f83dea8 [file] [log] [blame]
Maurice Chu667f9a82013-10-16 13:12:22 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.test.runner;
18
19import android.os.Bundle;
Alan Viverette475db102018-03-08 15:27:11 -050020import androidx.multidex.MultiDex;
Maurice Chu667f9a82013-10-16 13:12:22 -070021import android.test.InstrumentationTestRunner;
22
Yohann Roussel1bb1ab02014-01-23 18:53:10 +010023/**
Ying Wang5516c9f2014-02-27 12:08:49 -080024 * {@link android.test.InstrumentationTestRunner} for testing application needing multidex support.
Yohann Roussel93728d82017-02-27 18:19:45 +010025 *
26 * @deprecated Use
27 * <a href="{@docRoot}reference/android/support/test/runner/AndroidJUnitRunner.html">
28 * AndroidJUnitRunner</a> instead. New tests should be written using the
29 * <a href="{@docRoot}tools/testing-support-library/index.html">Android Testing Support Library</a>.
Yohann Roussel1bb1ab02014-01-23 18:53:10 +010030 */
Maurice Chu667f9a82013-10-16 13:12:22 -070031public class MultiDexTestRunner extends InstrumentationTestRunner {
32
33 @Override
34 public void onCreate(Bundle arguments) {
Yohann Roussel50823412016-09-20 18:01:13 +020035 MultiDex.installInstrumentation(getContext(), getTargetContext());
Maurice Chu667f9a82013-10-16 13:12:22 -070036 super.onCreate(arguments);
37 }
38
39}