* Tests that the apos of a string argument are not added to the filtering value
*/
@Test
public void testParseStringArgument() throws Exception
{
assertEquals(new Filters(null, new ComplexFilter[]{new ComplexFilter("name", new AssociativeEntity(
"eq", "Hardware"))}), parse("eq(name, 'Hardware')"));
assertEquals(new Filters(null, new ComplexFilter[]{new ComplexFilter("name", new AssociativeEntity(
"eq", ""))}), parse("eq(name, '')"));
}