blob: a081b8738bc9667ef1b65f2509c9236fec631979 [file] [log] [blame]
Ignacio Guarna0f5b02a2021-09-24 22:45:51 +00001#!/usr/bin/env python3
2#
3# Copyright 2021 - The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the 'License');
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an 'AS IS' BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17import acts_contrib.test_utils.power.cellular.cellular_traffic_power_test as ctpt
18
19
20class PowerTelTraffic_RbSweep_Test(ctpt.PowerTelTrafficTest):
21
22 def test_lte_direction_dl_8(self):
23 self.power_tel_traffic_test()
24
25 def test_lte_direction_dl_24(self):
26 self.power_tel_traffic_test()
27
28 def test_lte_direction_dl_52(self):
29 self.power_tel_traffic_test()
30
31 def test_lte_direction_dl_76(self):
32 self.power_tel_traffic_test()
33
34 def test_lte_direction_dl_100(self):
35 self.power_tel_traffic_test()
36
37 def test_lte_direction_ul_8(self):
38 self.power_tel_traffic_test()
39
40 def test_lte_direction_ul_25(self):
41 self.power_tel_traffic_test()
42
43 def test_lte_direction_ul_50(self):
44 self.power_tel_traffic_test()
45
46 def test_lte_direction_ul_75(self):
47 self.power_tel_traffic_test()
48
49 def test_lte_direction_ul_100(self):
50 self.power_tel_traffic_test()