LONGBOW_TEST_CASE(Global, ccnxStackConfig_GetJson)
{
    CCNxStackConfig *instance = ccnxStackConfig_Create();
    PARCJSON *json = ccnxStackConfig_GetJson(instance);

    assertNotNull(json, "Expected non-null JSON");
    ccnxStackConfig_Release(&instance);
}
PARCJSON *
rtaCommandCreateProtocolStack_GetConfig(const RtaCommandCreateProtocolStack *createStack)
{
    assertNotNull(createStack, "Parameter createStack must be non-null");
    return ccnxStackConfig_GetJson(createStack->config);
}