@@ -60,17 +60,20 @@ def steps_TC_MWOCTRL_2_1(self) -> list[TestStep]:
60
60
steps = [
61
61
TestStep (1 , "Commissioning, already done" , is_commissioning = True ),
62
62
TestStep (2 , "Read the MaxCookTime attribute and check limits" ,
63
- "Verify that the DUT response contains an elapsed-s value between 1 and 86400 inclusive. Save value as MaxCookTime."
64
- ),
63
+ "Verify that the DUT response contains an elapsed-s value between 1 and 86400 inclusive. Save value as MaxCookTime."
64
+ ),
65
65
TestStep (3 , "Read the CookTime attribute and check limits" ,
66
- "Verify that the DUT response contains an elapsed-s value between 1 and MaxCookTime inclusive."
67
- ),
66
+ "Verify that the DUT response contains an elapsed-s value between 1 and MaxCookTime inclusive."
67
+ ),
68
68
TestStep (4 , "Set the CookTime attribute to 60" , "Verify DUT responds w/ status SUCCESS(0x00)." ),
69
- TestStep (5 , "Read the CookTime attribute and check for 60" , "Verify that the DUT response contains the CookTime value 60." ),
69
+ TestStep (5 , "Read the CookTime attribute and check for 60" ,
70
+ "Verify that the DUT response contains the CookTime value 60." ),
70
71
TestStep (6 , "Set the CookTime attribute to 1" , "Verify DUT responds w/ status SUCCESS(0x00)" ),
71
- TestStep (7 , "Read the CookTime attribute and check for 1" , "Verify that the DUT response contains the CookTime value 1." ),
72
+ TestStep (7 , "Read the CookTime attribute and check for 1" ,
73
+ "Verify that the DUT response contains the CookTime value 1." ),
72
74
TestStep (8 , "Set the CookTime attribute to MaxCookTime" , "Verify DUT responds w/ status SUCCESS(0x00)" ),
73
- TestStep (9 , "Read the CookTime attribute and check for MaxCookTime" , "Verify that the DUT response contains the CookTime value MaxCookTime." ),
75
+ TestStep (9 , "Read the CookTime attribute and check for MaxCookTime" ,
76
+ "Verify that the DUT response contains the CookTime value MaxCookTime." ),
74
77
TestStep (10 , "Read the WattRating attribute, if supported" , "Verify that the DUT response contains a uint16 value." ),
75
78
TestStep (11 , "Set the CookTime attribute to 0" , "Verify DUT responds w/ status CONSTRAINT_ERROR(0x87)" ),
76
79
TestStep (12 , "Set the CookTime attribute to MaxCookTime+1" , "Verify DUT responds w/ status CONSTRAINT_ERROR(0x87)" ),
0 commit comments