-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace nl-unit-test with pigweed for protocols/secure_channel (#33499)
* secure channel tests to pigweed * Remove nlunit tests dependency * Update conversion to pigweed * Relocate class * Revert old implementation * Restore * Move definition of TEST_F_FROM_FIXTURE to UnitTest * Fix test error * Add missing deps * Revert order change * Restyle * Revert * Add missing header * Add UnitTestPigweedUtils * IoT SDK update tests list * Remove unused define * Change target type * license * Assert * rollback * cleanup * Change function to method * Restyle * Fix dependency between tests * Fix merge * Fix * Review fix * Fix typo * Fix review issues * Fix review issues
- Loading branch information
Showing
15 changed files
with
694 additions
and
1,117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* | ||
* Copyright (c) 2024 Project CHIP Authors | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
#pragma once | ||
|
||
/* | ||
* Run Fixture's class function as a test. | ||
* It is used to execute test cases that need to use private members of a particular class. | ||
* Unlike the pigweed macro `FRIEND_TEST`, this approach allows you to define the entire | ||
* test_fixture class as a friend, rather than having to define each testcase as a friend. | ||
* | ||
* @param test_fixture - the fixture class. | ||
* | ||
* @param test_name - the name of the test function. | ||
* | ||
* Example: | ||
* class Foo // class to be tested | ||
* { | ||
* friend class TestCtx; | ||
* private: | ||
* bool privateFunction(); | ||
* }; | ||
* | ||
* class TestCtx: public ::testing::Test | ||
* { | ||
* public: | ||
* void testFunction(); | ||
* }; | ||
* | ||
* TEST_F_FROM_FIXTURE(TestCtx, testFunction) | ||
* { | ||
* Foo foo; | ||
* EXPECT_TRUE(foo.privateFunction()); | ||
* } | ||
* | ||
*/ | ||
#define TEST_F_FROM_FIXTURE(test_fixture, test_name) \ | ||
TEST_F(test_fixture, test_name) \ | ||
{ \ | ||
test_name(); \ | ||
} \ | ||
void test_fixture::test_name() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.