Lines Matching refs:UnoRuntime
35 assertTrue("Test1", UnoRuntime.generateOid(new Test1()) != null); in test_generateOid()
39 assertTrue("Test2", UnoRuntime.generateOid(new Test2()) != null); in test_generateOid()
43 Ifc ifc = UnoRuntime.queryInterface(Ifc.class, test4); in test_generateOid()
46 UnoRuntime.generateOid(test4).equals(UnoRuntime.generateOid(ifc))); in test_generateOid()
54 UnoRuntime.queryInterface(Ifc.class, new Test1()) == null); in test_queryInterface()
60 UnoRuntime.queryInterface(Ifc.class, new Test2()) != null); in test_queryInterface()
66 UnoRuntime.queryInterface(Ifc.class, new Test3()) != null); in test_queryInterface()
72 UnoRuntime.areSame( in test_areSame()
76 !UnoRuntime.areSame( in test_areSame()
78 assertTrue(!UnoRuntime.areSame(new int[] { 1 }, new int[] { 1, 2 })); in test_areSame()
80 UnoRuntime.areSame( in test_areSame()
84 UnoRuntime.areSame( in test_areSame()
91 assertTrue(!UnoRuntime.areSame(new Test1(), new Test2())); in test_areSame()
95 UnoRuntime.areSame( in test_areSame()
96 UnoRuntime.queryInterface(Ifc.class, test2), test2)); in test_areSame()
102 UnoRuntime.completeValue(Type.UNSIGNED_LONG, null).equals( in test_completeValue()
104 Object v = UnoRuntime.completeValue( in test_completeValue()
109 UnoRuntime.completeValue(new Type(TypeClass.class), null) == in test_completeValue()
111 v = UnoRuntime.completeValue( in test_completeValue()
173 return UnoRuntime.generateOid(Test4.this); in getOid()
181 return UnoRuntime.areSame(Test4.this, object); in isSame()
190 assertTrue("", UnoRuntime.getCurrentContext() == null); in run()
192 UnoRuntime.setCurrentContext(context); in run()
193 assertTrue("", UnoRuntime.getCurrentContext() == context); in run()
195 UnoRuntime.setCurrentContext(null); in run()
196 assertTrue("", UnoRuntime.getCurrentContext() == null); in run()