1from AppKit import *
2from PyObjCTools.TestSupport import *
3
4
5class TestNSDictionaryControllerHelper (NSObject):
6    def isExplicitlyIncluded(self): return 1
7
8
9class TestNSDictionaryController (TestCase):
10    def testProtocols(self):
11        self.assertResultIsBOOL(TestNSDictionaryControllerHelper.isExplicitlyIncluded)
12
13
14if __name__ == "__main__":
15    main()
16