We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe265d commit 26d7e7fCopy full SHA for 26d7e7f
src/lib/dnssd/platform/tests/TestPlatform.cpp
@@ -156,7 +156,11 @@ test::ExpectedCall commissionableLargeEnhanced = test::ExpectedCall()
156
class TestDnssdPlatform : public ::testing::Test
157
{
158
public:
159
- static void SetUpTestSuite() { VerifyOrDie(chip::Platform::MemoryInit() == CHIP_NO_ERROR); }
+ static void SetUpTestSuite()
160
+ {
161
+ ASSERT_EQ(chip::Platform::MemoryInit(), CHIP_NO_ERROR);
162
+ // DiscoveryImplPlatform is initialized inside testcase code
163
+ }
164
static void TearDownTestSuite()
165
166
DiscoveryImplPlatform::GetInstance().Shutdown();
0 commit comments