blob: 702f4b8c0dc52bc5014222ab5a47625a133a1dc8 [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,
Sudheer Shankab2f83c12017-11-13 19:25:01 -080029 BatteryStatsImplTest.class,
Bookatz8c6f3c52017-05-24 12:00:17 -070030 BatteryStatsNoteTest.class,
Adam Lesinski98f0d462016-04-19 16:46:20 -070031 BatteryStatsSamplingTimerTest.class,
Bookatz8c6f3c52017-05-24 12:00:17 -070032 BatteryStatsSensorTest.class,
Joe Onoratoabded112016-02-08 16:49:39 -080033 BatteryStatsServTest.class,
Bookatzceebafe2017-04-06 11:59:13 -070034 BatteryStatsStopwatchTimerTest.class,
Joe Onoratoabded112016-02-08 16:49:39 -080035 BatteryStatsTimeBaseTest.class,
36 BatteryStatsTimerTest.class,
37 BatteryStatsUidTest.class,
Suprabh Shuklaa7ae1ca2017-08-07 18:46:42 -070038 BatteryStatsUserLifecycleTests.class,
Sudheer Shanka0afd1882017-07-21 14:51:17 -070039 KernelMemoryBandwidthStatsTest.class,
Sudheer Shankab2f83c12017-11-13 19:25:01 -080040 KernelSingleUidTimeReaderTest.class,
Sudheer Shanka0afd1882017-07-21 14:51:17 -070041 KernelUidCpuFreqTimeReaderTest.class,
Mike Ma3d422c32017-10-25 11:08:57 -070042 KernelUidCpuActiveTimeReaderTest.class,
43 KernelUidCpuClusterTimeReaderTest.class,
Sudheer Shanka0afd1882017-07-21 14:51:17 -070044 KernelWakelockReaderTest.class,
Mike Ma3d422c32017-10-25 11:08:57 -070045 LongSamplingCounterArrayTest.class,
46 PowerProfileTest.class
Joe Onoratoabded112016-02-08 16:49:39 -080047 })
48public class BatteryStatsTests {
49}
50