public void testExpression() throws Exception
{
UriTemplate template = UriTemplate.fromTemplate("{?empty_list}").set(VALUES);
String expected = "";
String result = template.expand();
Assert.assertEquals(expected, result);
String r2 = com.damnhandy.uri.template.UriTemplate.expand("", new java.util.HashMap<String, Object>() {
@Override
public Object put(String key, Object value) {