blob: 12f5b70f8970cc9a0a62ef3d759680e62271b479 [file] [log] [blame]
Sudheer Shanka0afd1882017-07-21 14:51:17 -07001/*
2 * Copyright (C) 2017 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 */
Joe Onoratoabded112016-02-08 16:49:39 -080016package com.android.internal.os;
17
18import org.junit.runner.RunWith;
19import org.junit.runners.Suite;
20
21@RunWith(Suite.class)
22@Suite.SuiteClasses({
Sudheer Shanka38383232017-07-25 09:55:03 -070023 BatteryStatsCpuTimesTest.class,
Bookatz8c6f3c52017-05-24 12:00:17 -070024 BatteryStatsBackgroundStatsTest.class,
25 BatteryStatsCounterTest.class,
Bookatz4a3eda92017-04-10 13:10:46 -070026 BatteryStatsDualTimerTest.class,
Joe Onorato92fd23f2016-07-25 11:18:42 -070027 BatteryStatsDurationTimerTest.class,
Sudheer Shanka0afd1882017-07-21 14:51:17 -070028 BatteryStatsHelperTest.class,
Bookatz8c6f3c52017-05-24 12:00:17 -070029 BatteryStatsNoteTest.class,
Adam Lesinski98f0d462016-04-19 16:46:20 -070030 BatteryStatsSamplingTimerTest.class,
Bookatz8c6f3c52017-05-24 12:00:17 -070031 BatteryStatsSensorTest.class,
Joe Onoratoabded112016-02-08 16:49:39 -080032 BatteryStatsServTest.class,
Bookatzceebafe2017-04-06 11:59:13 -070033 BatteryStatsStopwatchTimerTest.class,
Joe Onoratoabded112016-02-08 16:49:39 -080034 BatteryStatsTimeBaseTest.class,
35 BatteryStatsTimerTest.class,
36 BatteryStatsUidTest.class,
Suprabh Shuklaa7ae1ca2017-08-07 18:46:42 -070037 BatteryStatsUserLifecycleTests.class,
Sudheer Shanka0afd1882017-07-21 14:51:17 -070038 KernelMemoryBandwidthStatsTest.class,
39 KernelUidCpuFreqTimeReaderTest.class,
40 KernelWakelockReaderTest.class,
41 LongSamplingCounterArrayTest.class
Joe Onoratoabded112016-02-08 16:49:39 -080042 })
43public class BatteryStatsTests {
44}
45