1from PyObjCTools.TestSupport import *
2
3from Foundation import *
4
5class TestNSCompoundPredicate (TestCase):
6    def testConstants(self):
7        self.assertEqual(NSNotPredicateType, 0)
8        self.assertEqual(NSAndPredicateType, 1)
9        self.assertEqual(NSOrPredicateType, 2)
10
11if __name__ == "__main__":
12    main()
13