blob: 2d892965c5aa5e876962b9bd78a405291b3b85d3 [file] [log] [blame]
/*
* Copyright (C) 2010 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.tradefed;
import com.android.tradefed.build.FileDownloadCacheFuncTest;
import com.android.tradefed.command.CommandSchedulerFuncTest;
import com.android.tradefed.command.remote.RemoteManagerFuncTest;
import com.android.tradefed.device.metric.DeviceMetricDataFuncTest;
import com.android.tradefed.util.FileUtilFuncTest;
import com.android.tradefed.util.GCSBucketUtilFuncTest;
import com.android.tradefed.util.GCSFileDownloaderFuncTest;
import com.android.tradefed.util.RunUtilFuncTest;
import com.android.tradefed.util.net.HttpHelperFuncTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/** A test suite for all Trade Federation functional tests that do not require a device. */
@RunWith(Suite.class)
@SuiteClasses({
// build
FileDownloadCacheFuncTest.class,
// command
CommandSchedulerFuncTest.class,
// command.remote
RemoteManagerFuncTest.class,
// device.metric
DeviceMetricDataFuncTest.class,
// util
FileUtilFuncTest.class,
GCSFileDownloaderFuncTest.class,
GCSBucketUtilFuncTest.class,
HttpHelperFuncTest.class,
RunUtilFuncTest.class,
})
public class FuncTests {}