1 /* 2 * Copyright (C) 2010 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 package com.android.tradefed; 17 18 import com.android.tradefed.build.FileDownloadCacheFuncTest; 19 import com.android.tradefed.cluster.ClusterEventUploaderFuncTest; 20 import com.android.tradefed.command.CommandSchedulerFuncTest; 21 import com.android.tradefed.device.metric.DeviceMetricDataFuncTest; 22 import com.android.tradefed.util.FileUtilFuncTest; 23 import com.android.tradefed.util.GCSFileDownloaderFuncTest; 24 import com.android.tradefed.util.GCSFileUploaderFuncTest; 25 import com.android.tradefed.util.RunUtilFuncTest; 26 import com.android.tradefed.util.ZipUtilFuncTest; 27 import com.android.tradefed.util.net.HttpHelperFuncTest; 28 29 import org.junit.runner.RunWith; 30 import org.junit.runners.Suite; 31 import org.junit.runners.Suite.SuiteClasses; 32 33 /** A test suite for all Trade Federation functional tests that do not require a device. */ 34 @RunWith(Suite.class) 35 @SuiteClasses({ 36 // build 37 FileDownloadCacheFuncTest.class, 38 // cluster 39 ClusterEventUploaderFuncTest.class, 40 // command 41 CommandSchedulerFuncTest.class, 42 // device.metric 43 DeviceMetricDataFuncTest.class, 44 // util 45 FileUtilFuncTest.class, 46 GCSFileDownloaderFuncTest.class, 47 GCSFileUploaderFuncTest.class, 48 HttpHelperFuncTest.class, 49 RunUtilFuncTest.class, 50 ZipUtilFuncTest.class, 51 }) 52 public class FuncTests {} 53