@@ -54,8 +54,6 @@ constexpr NodeId kClientNodeId12 = 0x100002;
54
54
constexpr NodeId kClientNodeId21 = 0x200001 ;
55
55
constexpr NodeId kClientNodeId22 = 0x200002 ;
56
56
57
- const uint8_t kTestKey [16 ] = { 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 };
58
-
59
57
constexpr uint8_t kKeyBuffer1a [] = {
60
58
0x10 , 0x11 , 0x12 , 0x13 , 0x14 , 0x15 , 0x16 , 0x17 , 0x18 , 0x19 , 0x1a , 0x1b , 0x1c , 0x1d , 0x1e , 0x1f
61
59
};
@@ -94,22 +92,6 @@ class TestSubscriptionsInfoProvider : public SubscriptionsInfoProvider
94
92
bool mHasPersistedSubscription = false ;
95
93
};
96
94
97
- class TestEventDelegate : public TestEventTriggerDelegate
98
- {
99
- public:
100
- TestEventDelegate () { mEnableKey = ByteSpan{ kTestKey }; };
101
-
102
- explicit TestEventDelegate (const ByteSpan & enableKey) : mEnableKey(enableKey) {}
103
-
104
- bool DoesEnableKeyMatch (const ByteSpan & enableKey) const override
105
- {
106
- return !mEnableKey .empty () && mEnableKey .data_equal (enableKey);
107
- }
108
-
109
- private:
110
- ByteSpan mEnableKey ;
111
- };
112
-
113
95
class TestContext : public chip ::Test::AppContext
114
96
{
115
97
public:
@@ -136,16 +118,15 @@ class TestContext : public chip::Test::AppContext
136
118
{
137
119
138
120
ReturnErrorOnFailure (chip::Test::AppContext::SetUp ());
139
- mICDManager .Init (&testStorage, &GetFabricTable (), &mKeystore , &GetExchangeManager (), &mSubInfoProvider ,
140
- &mTestEventDelagate );
121
+ mICDManager .Init (&testStorage, &GetFabricTable (), &mKeystore , &GetExchangeManager (), &mSubInfoProvider );
141
122
mICDManager .RegisterObserver (&mICDStateObserver );
142
123
return CHIP_NO_ERROR;
143
124
}
144
125
145
126
// Performs teardown for each individual test in the test suite
146
127
void TearDown () override
147
128
{
148
- mICDManager .Shutdown (& mTestEventDelagate );
129
+ mICDManager .Shutdown ();
149
130
chip::Test::AppContext::TearDown ();
150
131
}
151
132
@@ -155,7 +136,6 @@ class TestContext : public chip::Test::AppContext
155
136
TestSubscriptionsInfoProvider mSubInfoProvider ;
156
137
TestPersistentStorageDelegate testStorage;
157
138
TestICDStateObserver mICDStateObserver ;
158
- TestEventDelegate mTestEventDelagate ;
159
139
160
140
private:
161
141
System::Clock::ClockBase * mRealClock ;
@@ -536,9 +516,9 @@ class TestICDManager
536
516
uint32_t counter = ICDConfigurationData::GetInstance ().GetICDCounter ().GetValue ();
537
517
538
518
// Shut down and reinit ICDManager to increment counter
539
- ctx->mICDManager .Shutdown (&(ctx-> mTestEventDelagate ) );
519
+ ctx->mICDManager .Shutdown ();
540
520
ctx->mICDManager .Init (&(ctx->testStorage ), &(ctx->GetFabricTable ()), &(ctx->mKeystore ), &(ctx->GetExchangeManager ()),
541
- &(ctx->mSubInfoProvider ), &(ctx-> mTestEventDelagate ) );
521
+ &(ctx->mSubInfoProvider ));
542
522
ctx->mICDManager .RegisterObserver (&(ctx->mICDStateObserver ));
543
523
544
524
NL_TEST_ASSERT_EQUALS (aSuite, counter + ICDConfigurationData::kICDCounterPersistenceIncrement ,
0 commit comments