summaryrefslogtreecommitdiff
path: root/test-runner/src
diff options
context:
space:
mode:
author Paul Duffin <paulduffin@google.com> 2017-06-21 08:20:29 +0000
committer android-build-merger <android-build-merger@google.com> 2017-06-21 08:20:29 +0000
commitd1d3d0fcfc82eb5550be4660fe9cfec3b19db7db (patch)
tree0d848ee9789e2e962ec2be09e4ea32c2340e15cd /test-runner/src
parent4aef87575c13cc3e62e837232fe46a9d20989bcf (diff)
parent28600f2cae318f5977734f17a509031e0c39ebb4 (diff)
Merge "Remove unused a.t.s.InstrumentationTestSuiteBuilder" am: 1935dce8eb am: a4d2464189
am: 28600f2cae Change-Id: I9004d50829d18736f6d50f6bd48cb6d7c3b6e605
Diffstat (limited to 'test-runner/src')
-rw-r--r--test-runner/src/android/test/suitebuilder/InstrumentationTestSuiteBuilder.java35
1 files changed, 0 insertions, 35 deletions
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);
- }
-}