|
31 | 31 | from typing import Callable
|
32 | 32 |
|
33 | 33 | import chip.clusters as Clusters
|
34 |
| -from matter_testing_support.basic_composition import BasicCompositionTests |
35 | 34 | from chip.tlv import uint
|
36 |
| -from matter_testing_support.choice_conformance import (evaluate_attribute_choice_conformance, evaluate_command_choice_conformance, |
37 |
| - evaluate_feature_choice_conformance) |
38 |
| -from matter_testing_support.conformance import ConformanceDecision, conformance_allowed |
39 |
| -from matter_testing_support.global_attribute_ids import (ClusterIdType, DeviceTypeIdType, GlobalAttributeIds, cluster_id_type, device_type_id_type, |
40 |
| - is_valid_device_type_id) |
41 |
| -from matter_testing_support.matter_testing import (AttributePathLocation, ClusterPathLocation, CommandPathLocation, DeviceTypePathLocation, |
42 |
| - MatterBaseTest, ProblemNotice, ProblemSeverity, async_test_body, default_matter_test_main) |
43 |
| -from matter_testing_support.spec_parsing import CommandType, build_xml_clusters, build_xml_device_types |
| 35 | +from matter_testing_support.basic_composition import BasicCompositionTests |
| 36 | +from matter_testing_support.choice_conformance import ( |
| 37 | + evaluate_attribute_choice_conformance, |
| 38 | + evaluate_command_choice_conformance, |
| 39 | + evaluate_feature_choice_conformance |
| 40 | +) |
| 41 | +from matter_testing_support.conformance import ( |
| 42 | + ConformanceDecision, |
| 43 | + conformance_allowed |
| 44 | +) |
| 45 | +from matter_testing_support.global_attribute_ids import ( |
| 46 | + ClusterIdType, |
| 47 | + DeviceTypeIdType, |
| 48 | + GlobalAttributeIds, |
| 49 | + cluster_id_type, |
| 50 | + device_type_id_type, |
| 51 | + is_valid_device_type_id |
| 52 | +) |
| 53 | +from matter_testing_support.matter_testing import ( |
| 54 | + AttributePathLocation, |
| 55 | + ClusterPathLocation, |
| 56 | + CommandPathLocation, |
| 57 | + DeviceTypePathLocation, |
| 58 | + MatterBaseTest, |
| 59 | + ProblemNotice, |
| 60 | + ProblemSeverity, |
| 61 | + async_test_body, |
| 62 | + default_matter_test_main |
| 63 | +) |
| 64 | +from matter_testing_support.spec_parsing import ( |
| 65 | + CommandType, |
| 66 | + build_xml_clusters, |
| 67 | + build_xml_device_types |
| 68 | +) |
44 | 69 |
|
45 | 70 |
|
46 | 71 | class DeviceConformanceTests(BasicCompositionTests):
|
|
0 commit comments