Lines Matching refs:bCaughtException

111     bool bCaughtException = false;  in testUnoSetThrow()  local
112 …x( xNull, UNO_SET_THROW ); (void)x; } catch( const RuntimeException& ) { bCaughtException = true; } in testUnoSetThrow()
113 CPPUNIT_ASSERT_EQUAL( true, bCaughtException ); in testUnoSetThrow()
115 bCaughtException = false; in testUnoSetThrow()
116 … x( xFoo, UNO_SET_THROW ); (void)x; } catch( const RuntimeException& ) { bCaughtException = true; } in testUnoSetThrow()
117 CPPUNIT_ASSERT_EQUAL( false, bCaughtException ); in testUnoSetThrow()
120 bCaughtException = false; in testUnoSetThrow()
121 …ll.get(), UNO_SET_THROW ); (void)x; } catch( const RuntimeException& ) { bCaughtException = true; } in testUnoSetThrow()
122 CPPUNIT_ASSERT_EQUAL( true, bCaughtException ); in testUnoSetThrow()
124 bCaughtException = false; in testUnoSetThrow()
125 …oo.get(), UNO_SET_THROW ); (void)x; } catch( const RuntimeException& ) { bCaughtException = true; } in testUnoSetThrow()
126 CPPUNIT_ASSERT_EQUAL( false, bCaughtException ); in testUnoSetThrow()
130 bCaughtException = false; in testUnoSetThrow()
131 …try { x.set( xNull, UNO_SET_THROW ); } catch( const RuntimeException& ) { bCaughtException = true;… in testUnoSetThrow()
132 CPPUNIT_ASSERT_EQUAL( true, bCaughtException ); in testUnoSetThrow()
134 bCaughtException = false; in testUnoSetThrow()
135 …try { x.set( xFoo, UNO_SET_THROW ); } catch( const RuntimeException& ) { bCaughtException = true; } in testUnoSetThrow()
136 CPPUNIT_ASSERT_EQUAL( false, bCaughtException ); in testUnoSetThrow()
139 bCaughtException = false; in testUnoSetThrow()
140 ….set( xNull.get(), UNO_SET_THROW ); } catch( const RuntimeException& ) { bCaughtException = true; } in testUnoSetThrow()
141 CPPUNIT_ASSERT_EQUAL( true, bCaughtException ); in testUnoSetThrow()
143 bCaughtException = false; in testUnoSetThrow()
144 …try { x.set( xFoo.get(), UNO_SET_THROW ); } catch( const RuntimeException& ) { bCaughtException = … in testUnoSetThrow()
145 CPPUNIT_ASSERT_EQUAL( false, bCaughtException ); in testUnoSetThrow()