Skip to content

Commit e472e1d

Browse files
committed
refactor runners tests: improve naming consistency for InitJSONPtr test cases to enhance clarity and readability
1 parent 798909a commit e472e1d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

modules/runners/tests/runners_additional.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class RunnersAdditionalTest : public ::testing::Test {
1818
// Keep only unique functionality tests - InitJSONPtr
1919
// No environment variable manipulation needed here
2020

21-
TEST_F(RunnersAdditionalTest, InitJSONPtr_BasicFunctionality) {
21+
TEST_F(RunnersAdditionalTest, InitJSONPtr_WithBasicUsage_CreatesValidJsonPointer) {
2222
// Test the InitJSONPtr function
2323
auto json_ptr = ppc::util::InitJSONPtr();
2424

@@ -30,7 +30,7 @@ TEST_F(RunnersAdditionalTest, InitJSONPtr_BasicFunctionality) {
3030
EXPECT_EQ((*json_ptr)["test_key"], "test_value");
3131
}
3232

33-
TEST_F(RunnersAdditionalTest, InitJSONPtr_EmptyJSON) {
33+
TEST_F(RunnersAdditionalTest, InitJSONPtr_WhenCreated_ReturnsEmptyJsonPointer) {
3434
// Test with empty JSON
3535
auto json_ptr = ppc::util::InitJSONPtr();
3636

0 commit comments

Comments
 (0)