Skip to content

Commit ca55a12

Browse files
committed
Updated the test steps to align to feedback on Test Plan PR.
1 parent 66b152a commit ca55a12

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/python_testing/TC_EWATERHTR_2_1.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,20 @@ def pics_TC_EWATERHTR_2_1(self):
5151
def steps_TC_EWATERHTR_2_1(self) -> list[TestStep]:
5252
steps = [
5353
TestStep("1", "Commission DUT to TH (can be skipped if done in a preceding test)."),
54-
TestStep("2", "TH reads from the DUT FeatureMap attribute.",
55-
"Store the value as FeatureMap."),
54+
TestStep("2", "TH reads from the DUT the FeatureMap attribute.",
55+
"Verify that the DUT response contains the FeatureMap attribute. Store the value as FeatureMap."),
5656
TestStep("3", "TH reads from the DUT the HeaterTypes attribute.",
5757
"Verify that the DUT response contains a WaterHeaterTypeBitmap (enum8) greater than 0x00 (at least one type supported), and less than 0x20 (no undefined types supported)"),
5858
TestStep("4", "TH reads from the DUT the HeatDemand attribute.",
59-
"Verify that the DUT response contains a WaterHeaterDemandBitmap (enum8)."),
59+
"Verify that the DUT response contains a WaterHeaterDemandBitmap (enum8) value less than 0x20 (no undefined types supported)."),
6060
TestStep("5", "TH reads from the DUT the TankVolume attribute.",
6161
"Verify that the DUT response contains a uint16 value."),
6262
TestStep("6", "TH reads from the DUT the EstimatedHeatRequired attribute.",
63-
"Verify that the DUT response contains an energy-mWh value."),
63+
"Verify that the DUT response contains an energy-mWh value that is greater or equal to 0."),
6464
TestStep("7", "TH reads from the DUT the TankPercentage attribute.",
65-
"Verify that the DUT response contains a percent value."),
65+
"Verify that the DUT response contains a percent value that is between 0 and 100."),
6666
TestStep("8", "TH reads from the DUT the BoostState attribute.",
67-
"Verify that the DUT response contains a BoostStateEnum (enum8) value."),
67+
"Verify that the DUT response contains a BoostStateEnum (enum8) value that is less than or equal to 1."),
6868
]
6969

7070
return steps

0 commit comments

Comments
 (0)