Home
last modified time | relevance | path

Searched refs:DeviceProperties (Results 1 – 5 of 5) sorted by relevance

/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
Ddevice_lite.py26 from xdevice import DeviceProperties
138 DeviceProperties.sn: convert_serial(self.device_sn),
139 DeviceProperties.model: self.label,
140 DeviceProperties.type_: self.label,
141 DeviceProperties.platform: "OpenHarmony",
142 DeviceProperties.version: "",
143 DeviceProperties.others: self.device_props
Ddevice.py28 from xdevice import DeviceProperties
220 DeviceProperties.sn: convert_serial(self.device_sn),
221 DeviceProperties.model: self.get_property("const.product.model"),
222 DeviceProperties.type_: self.get_device_type(),
223 DeviceProperties.platform: "OpenHarmony",
224 DeviceProperties.version: self.get_property("const.product.software.version"),
225 DeviceProperties.others: self.device_props
/test/testfwk/xdevice/src/xdevice/_core/
Dconstants.py327 class DeviceProperties(object): class
/test/testfwk/xdevice/src/xdevice/
D__init__.py64 from _core.constants import DeviceProperties
/test/testfwk/xdevice/src/xdevice/_core/report/
Dresult_reporter.py34 from _core.constants import DeviceProperties
336 device_sn = device.get(DeviceProperties.sn, "")
337 … temp = [d for d in self.summary.get_devices() if d.get(DeviceProperties.sn, "") == device_sn]