diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-01-17 19:20:09 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-01-17 19:20:10 +0000 |
commit | aa045af26c100409275bc9e9f9d24ce7a0e76a47 (patch) | |
tree | 51022aab1cd758e5c95b2c1bed409cb5ab2e9036 | |
parent | 65f6ad532128008492a4903b48da4463dc6ed3c5 (diff) | |
parent | fdba8aee8ed87e1983f34507527ea24c659f82dd (diff) | |
download | platform_tools_test_connectivity-aa045af26c100409275bc9e9f9d24ce7a0e76a47.tar.gz platform_tools_test_connectivity-aa045af26c100409275bc9e9f9d24ce7a0e76a47.tar.bz2 platform_tools_test_connectivity-aa045af26c100409275bc9e9f9d24ce7a0e76a47.zip |
Merge "Add TestTracker UUIDs to GattReadTest"
-rw-r--r-- | acts/tests/google/ble/gatt/GattReadTest.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/acts/tests/google/ble/gatt/GattReadTest.py b/acts/tests/google/ble/gatt/GattReadTest.py index 70f6b6e05a..6225deae22 100644 --- a/acts/tests/google/ble/gatt/GattReadTest.py +++ b/acts/tests/google/ble/gatt/GattReadTest.py @@ -17,6 +17,7 @@ This test script exercises different GATT read procedures. """ +from acts.test_decorators import test_tracker_info from acts.test_utils.bt.BluetoothBaseTest import BluetoothBaseTest from acts.test_utils.bt.GattConnectedBaseTest import GattConnectedBaseTest from acts.test_utils.bt.GattEnum import GattCharacteristic @@ -29,6 +30,7 @@ from math import ceil class GattReadTest(GattConnectedBaseTest): @BluetoothBaseTest.bt_test_wrap + @test_tracker_info(uuid='ed8523f4-0eb8-4d14-b558-d3c28902f8bb') def test_read_char(self): """Test read characteristic value. @@ -78,6 +80,7 @@ class GattReadTest(GattConnectedBaseTest): return True @BluetoothBaseTest.bt_test_wrap + @test_tracker_info(uuid='5916a78d-3db8-4df2-9b96-b25e99096e0d') def test_read_long_char(self): """Test read long characteristic value. |