assert onqu.getTranslatedQuery().equals("java.lang:*");
assert onqu.getVariableProperties().size() == 4;
testON = new ObjectName("java.lang:type=A,name=B,app=C,foo=D");
onqu.setMatchedKeyValues(testON.getKeyPropertyList());
formulatedMessageTemplate = "Type: {MyType}, Name: {MyName}, App: {MyApp}, Foo: {MyFoo}";
assert onqu.formatMessage(formulatedMessageTemplate).equals("Type: A, Name: B, App: C, Foo: D");
Configuration c = new Configuration();
c.put(new PropertySimple("e", "foo"));
c.put(new PropertySimple("g", "bar"));
onqu = new ObjectNameQueryUtility("a:b=c,d={e},f={g}", c);