1
2from PyObjCTools.TestSupport import *
3from Quartz.PDFKit import *
4
5class TestPDFAnnotationChoiceWidget (TestCase):
6    def testMethods(self):
7        self.assertResultIsBOOL(PDFAnnotationChoiceWidget.isListChoice)
8        self.assertArgIsBOOL(PDFAnnotationChoiceWidget.setIsListChoice_, 0)
9
10if __name__ == "__main__":
11    main()
12