From 6447b4721d0b3b1069c2d9e0dd6c0fd74a703de0 Mon Sep 17 00:00:00 2001 From: William Date: Mon, 22 Jan 2024 11:17:51 +0000 Subject: [PATCH] Added functions for test harness support Co-authored-by: C Freeman --- src/python_testing/TC_RVCOPSTATE_2_3.py | 2 ++ src/python_testing/TC_RVCOPSTATE_2_4.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/python_testing/TC_RVCOPSTATE_2_3.py b/src/python_testing/TC_RVCOPSTATE_2_3.py index 31042741bb3bb6..2241a5a94c1a68 100644 --- a/src/python_testing/TC_RVCOPSTATE_2_3.py +++ b/src/python_testing/TC_RVCOPSTATE_2_3.py @@ -75,6 +75,8 @@ def error_enum_to_text(error_enum): elif error_enum == Clusters.RvcOperationalState.Enums.ErrorStateEnum.kMopCleaningPadMissing: return "MopCleaningPadMissing(0x47)" + def pics_TC_RVCOPSTATE_2_3(self) -> list[str]: + return ["RVCOPSTATE.S"] class TC_RVCOPSTATE_2_3(MatterBaseTest): diff --git a/src/python_testing/TC_RVCOPSTATE_2_4.py b/src/python_testing/TC_RVCOPSTATE_2_4.py index 9b76893bcbc435..43a48e27eab261 100644 --- a/src/python_testing/TC_RVCOPSTATE_2_4.py +++ b/src/python_testing/TC_RVCOPSTATE_2_4.py @@ -73,6 +73,8 @@ def error_enum_to_text(error_enum): elif error_enum == Clusters.RvcOperationalState.Enums.ErrorStateEnum.kMopCleaningPadMissing: return "MopCleaningPadMissing(0x47)" + def pics_TC_RVCOPSTATE_2_4(self) -> list[str]: + return ["RVCOPSTATE.S"] class TC_RVCOPSTATE_2_4(MatterBaseTest): def __init__(self, *args):