test_quicklookui.py :  » Development » PyObjC » trunk » pyobjc » pyobjc-framework-Quartz » Lib » Quartz » QuickLookUI » test » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Development » PyObjC 
PyObjC » trunk » pyobjc » pyobjc framework Quartz » Lib » Quartz » QuickLookUI » test » test_quicklookui.py
'''
Some simple tests to check that the framework is properly wrapped.
'''
import objc
import unittest
import QuickLookUI

class TestQuickLookUI (unittest.TestCase):
    def testClasses(self):
        pass
        # self.assert_( hasattr(QuickLookUI, 'CLASSNAME') )
        # self.assert_( isinstance(QuickLookUI.CLASSNAME, objc.objc_class) )
        # Tollfree CF-type:
        # self.assert_( hasattr(QuickLookUI, 'CLASSNAMERef') )
        # self.assert_( QuickLookUI.CLASSNAMERef is QuickLookUI.CLASSNAME )

        # Not-tollfree CF-type:
        # self.assert_( hasattr(QuickLookUI, 'CLASSNAMERef') )
        # self.assert_( issubclass(QuickLookUI.CLASSNAMERef, objc.lookUpClass('NSCFType')) )
        # self.assert_( QuickLookUI.CLASSNAMERef is not objc.lookUpClass('NSCFType') )

    def testValues(self):
        # Use this to test for a number of enum and #define values
        pass

        # Integer values:
        # self.assert_( hasattr(QuickLookUI, 'CONSTANT') )
        # self.assert_( isinstance(QuickLookUI.CONSTANT, (int, long)) )
        # self.assertEquals(QuickLookUI.CONSTANT, 7)

        # String values:
        # self.assert_( hasattr(QuickLookUI, 'CONSTANT') )
        # self.assert_( isinstance(QuickLookUI.CONSTANT, (str, unicode)) )
        # self.assertEquals(QuickLookUI.CONSTANT, 'value')

    def testVariables(self):
        # Use this to test for global variables, (NSString*'s and the like)
        pass

        # self.assert_( hasattr(QuickLookUI, 'CONSTANT') )
        # self.assert_( isinstance(QuickLookUI.CONSTANT, unicode) )

    def testFunctions(self):
        # Use this to test for functions
        pass

        # self.assert_( hasattr(QuickLookUI, 'FUNCTION') )

    def testOpaque(self):
        # Use this to test for opaque pointers
        pass

        # self.assert_( hasattr(QuickLookUI, 'OPAQUE') )

    def testProtocols(self):
        # Use this to test if informal protocols  are present
        pass

        # self.assert_( hasattr(QuickLookUI, 'protocols') )

        # self.assert_( hasattr(QuickLookUI.protocols, 'PROTOCOL') )
        # self.assert_( isinstance(QuickLookUI.protocols.PROTOCOL, objc.informal_protocol) )

    def test_structs(self):
        # Use this to test struct wrappers
        pass

        # self.assert_( hasattr(QuickLookUI, 'STRUCT') )
        # o = QuickLookUI.STRUCT()
        # self.assert_( hasattr(o, 'FIELD_NAME') )



if __name__ == "__main__":
    unittest.main()

w_w__w___.___j_a___v___a_2__s_.c__om | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.