add trivial boolean selector test

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@959298 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2010-06-30 13:12:19 +00:00
parent a891182114
commit d1e35e6c3a
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ public class SelectorTest extends TestCase {
assertSelector(message, "(trueProp OR falseProp) AND trueProp", true);
assertSelector(message, "(trueProp OR falseProp) AND falseProp", false);
assertSelector(message, "trueProp", true);
}