/**
* Tests interpretation of an acl rule with object properties quoted in double quotes.
*/
public void testValidRuleWithDoubleQuotedProperty() throws Exception
{
final PlainConfiguration config = writeACLConfig("ACL ALLOW all CREATE EXCHANGE name = \"value\"");
final RuleSet rs = config.getConfiguration();
assertEquals(1, rs.getRuleCount());
final Map<Integer, Rule> rules = rs.getAllRules();
assertEquals(1, rules.size());
final Rule rule = rules.get(0);