Skip to content

Commit

Permalink
test: system testcase added (#819)
Browse files Browse the repository at this point in the history
- testcase added for system module for code coverage

Signed-off-by: Guru Mehar Rachaputi <[email protected]>
  • Loading branch information
00thirdeye00 authored Jul 16, 2024
1 parent 540cea8 commit 2a3e867
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/modules/system/system_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,13 @@ TEST_F(SystemTest, NetworkInterfaceMethodTest)
const auto result4 = networkInterface(options4);

ASSERT_TRUE(!result4.empty());

NetworkInterfaceOptions options5;
options5.interfaceSchema = "index";

const auto result5 = networkInterface(options5);

ASSERT_TRUE(!result5.empty());
}

TEST_F(SystemTest, ValidCronExpression)
Expand Down

0 comments on commit 2a3e867

Please sign in to comment.