1from AppKit import *
2from PyObjCTools.TestSupport import *
3
4
5class TestNSActionCell (TestCase):
6    def testMethods(self):
7        self.assertArgIsBOOL(NSActionCell.setBordered_, 0)
8        self.assertArgIsBOOL(NSActionCell.setBezeled_, 0)
9        self.assertArgIsBOOL(NSActionCell.setEnabled_, 0)
10        self.assertArgIsBOOL(NSActionCell.setFloatingPointFormat_left_right_, 0)
11
12
13if __name__ == "__main__":
14    main()
15