예제 #1
0
def test(key):
    print(
        "in maturity level " + str(Configuration_Master_client.get_ML()) +
        ", namespace '*' [i.e. only matches config.s that are present in all namespaces at least in this ML]:\n\t "
        + ("%-70s" % ("for key = ''" + key + "'':")) + " result = ''" +
        Configuration_Master_client.get_config(key=key) + "''")
    print()
def test(ML, key):

    print(
        "in maturity level " + str(ML) +
        ", namespace '*' [i.e. only matches config.s that are present in all namespaces at least in this ML]:\n\t "
        + "for key = ''" + key + "'': textual result = ''" +
        str(Configuration_Master_client.get_config(key=key, ML=ML)) +
        "'', result = " +
        str(Configuration_Master_client.get_config_as_Boolean(key=key, ML=ML)))
    print()
예제 #3
0
def test(key):

    print(
        "in namespace '*' [i.e. only matches schema entries that are present in all namespaces]:\n\t "
        + "for key = ''" + key + "'': result = ''" +
        str(Configuration_Master_client.get_type(key=key)) + "''")
    print()