/* * Copyright (C) 2012 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 com.android.test.runner.junit3; import android.app.Instrumentation; import junit.framework.TestCase; import org.junit.runner.Runner; import org.junit.runners.model.RunnerBuilder; /** * A {@link RunnerBuilder} that will build customized runners needed for specialized Android * {@link TestCase}s. */ public class AndroidJUnit3Builder extends RunnerBuilder { private Instrumentation mInstr; private boolean mSkipExecution; public AndroidJUnit3Builder(Instrumentation instr, boolean skipExecution) { mInstr = instr; mSkipExecution = skipExecution; } @Override public Runner runnerForClass(Class<?> testClass) throws Throwable { if (mSkipExecution && isJUnit3TestCase(testClass)) { return new NonExecutingJUnit3ClassRunner(testClass); } else if (isAndroidTestCase(testClass)) { return new AndroidJUnit3ClassRunner(testClass, mInstr); } else if (isInstrumentationTestCase(testClass)) { return new AndroidJUnit3ClassRunner(testClass, mInstr); } return null; } boolean isJUnit3TestCase(Class<?> testClass) { return junit.framework.TestCase.class.isAssignableFrom(testClass); } boolean isAndroidTestCase(Class<?> testClass) { return android.test.AndroidTestCase.class.isAssignableFrom(testClass); } boolean isInstrumentationTestCase(Class<?> testClass) { return android.test.InstrumentationTestCase.class.isAssignableFrom(testClass); } }