public void testNegateMatch() throws Exception {
log.info( "Testing negation... " );
ConditionSX neg = new ConditionSX( "", "!*.org" );
ConditionSX neg2 = new ConditionSX( "", "!*.org" );
Assert.assertFalse( neg.matches( "secure.jwall.org" ) );
Assert.assertTrue( neg2.matches( "secure.jwall.com" ) );
}
@Test
public void testNegateMatchNoWildcard() throws Exception {