From 4f1dbfed97ed482110dea1d606809dcd4355105b Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Tue, 20 Jun 2017 14:03:28 +0100 Subject: Remove unused a.t.s.InstrumentationTestSuiteBuilder Bug: 30188076 Test: make checkbuild Change-Id: I30514123c077e6047227f888f5f1a20e71ee1988 --- .../InstrumentationTestSuiteBuilder.java | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 test-runner/src/android/test/suitebuilder/InstrumentationTestSuiteBuilder.java (limited to 'test-runner/src') diff --git a/test-runner/src/android/test/suitebuilder/InstrumentationTestSuiteBuilder.java b/test-runner/src/android/test/suitebuilder/InstrumentationTestSuiteBuilder.java deleted file mode 100644 index 128396e5a9c0..000000000000 --- a/test-runner/src/android/test/suitebuilder/InstrumentationTestSuiteBuilder.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (C) 2008 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.test.suitebuilder; - -/** - * A suite builder that finds instrumentation tests. - * - * {@hide} Not needed for 1.0 SDK. - */ -public class InstrumentationTestSuiteBuilder extends TestSuiteBuilder { - - public InstrumentationTestSuiteBuilder(Class clazz) { - this(clazz.getName(), clazz.getClassLoader()); - } - - - public InstrumentationTestSuiteBuilder(String name, ClassLoader classLoader) { - super(name, classLoader); - addRequirements(TestPredicates.SELECT_INSTRUMENTATION); - } -} -- cgit v1.2.3-59-g8ed1b