Exemplo n.º 1
0
    def testPassingClassTypeSucceeds(self):
        h = JPackage("jpype.objectwrapper").Test1()
        # Select a convenient java.lang.Class object
        class_obj = h.getClass()

        # Check that funneling Class obj through java doesn't convert to null
        result = h.ReturnObject(class_obj)

        self.assertEqual(class_obj, result)
        self.assertNotEqual(result, None)
Exemplo n.º 2
0
    def testPassingClassTypeSucceeds(self):
        h = JPackage("jpype.objectwrapper").Test1()
        # Select a convenient java.lang.Class object
        class_obj = h.getClass()

        # Check that funneling Class obj through java doesn't convert to null
        result = h.ReturnObject(class_obj)

        self.assertEqual(class_obj, result)
        self.assertNotEqual(result, None)