Skip to content

Commit

Permalink
Address review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
bzbarsky-apple committed Jun 6, 2023
1 parent 7254b27 commit 51ec643
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#import "MTRLogging_Internal.h"
#import "NSStringSpanConversion.h"
#import "NSDataSpanConversion.h"
#import "MTRBackwardsCompatShims.h"

#include <lib/core/TLV.h>
#include <app/data-model/Decode.h>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions src/darwin/Framework/CHIPTests/MTRBackwardsCompatTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -1196,6 +1196,15 @@ - (void)test046_MTRThreadOperationalDataset
CHECK_RETURN_TYPE(sig, NSData *);
}

- (void)test047_MTRGroupKeyManagementClusterKeySetReadAllIndicesParams
{
__auto_type * params = [[MTRGroupKeyManagementClusterKeySetReadAllIndicesParams alloc] init];
CHECK_PROPERTY(params, groupKeySetIDs, setGroupKeySetIDs, NSArray *);

params.groupKeySetIDs = @[ @(16) ];
XCTAssertEqualObjects(params.groupKeySetIDs, @[ @(16) ]);
}

- (void)test999_TearDown
{
ResetCommissionee(GetConnectedDevice(), dispatch_get_main_queue(), self, kTimeoutInSeconds);
Expand Down

0 comments on commit 51ec643

Please sign in to comment.