blob: 5fc40563f3b9c3977197ea23198db54632c1f707 [file] [log] [blame]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.support.test.internal.util;
import android.app.Instrumentation;
import android.os.Bundle;
/**
* Helper class to store frequently passed test parameters between the different classes
*/
public class AndroidRunnerParams {
private final Instrumentation mInstrumentation;
private final Bundle mBundle;
private final boolean mSkipExecution;
private final long mPerTestTimeout;
private final boolean mIgnoreSuiteMethods;
/**
* @param instrumentation the {@link Instrumentation} to inject into any tests that require it
* @param bundle the {@link Bundle} of command line args to inject into any tests that require
* it
* @param skipExecution whether or not to skip actual test execution
* @param perTestTimeout milliseconds timeout value applied to each test where 0 means no
* timeout
*/
public AndroidRunnerParams(Instrumentation instrumentation, Bundle bundle,
boolean skipExecution, long perTestTimeout,
boolean ignoreSuiteMethods) {
this.mInstrumentation = instrumentation;
this.mBundle = bundle;
this.mSkipExecution = skipExecution;
this.mPerTestTimeout = perTestTimeout;
this.mIgnoreSuiteMethods = ignoreSuiteMethods;
}
public Instrumentation getInstrumentation() {
return mInstrumentation;
}
public Bundle getBundle() {
return mBundle;
}
public boolean isSkipExecution() {
return mSkipExecution;
}
public long getPerTestTimeout() {
return mPerTestTimeout;
}
public boolean isIgnoreSuiteMethods() {
return mIgnoreSuiteMethods;
}
}