diff options
author | Michi Henning <michi@zeroc.com> | 2002-07-09 01:20:30 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-07-09 01:20:30 +0000 |
commit | cf1e8965fee4efc3f188fae487fdf48e315aa60a (patch) | |
tree | 012e1cbc8285f79aeca6a9b0b818dca0b41aa6ed /cpp/test/Ice/exceptions/AllTests.cpp | |
parent | Updated dependencies. (diff) | |
download | ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.tar.bz2 ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.tar.xz ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.zip |
Got tripped up by the style guide again and change "_mem" to "Mem" :-)
Diffstat (limited to 'cpp/test/Ice/exceptions/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/AllTests.cpp | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/cpp/test/Ice/exceptions/AllTests.cpp b/cpp/test/Ice/exceptions/AllTests.cpp index 397e0f31ed9..77a1f7f60a4 100644 --- a/cpp/test/Ice/exceptions/AllTests.cpp +++ b/cpp/test/Ice/exceptions/AllTests.cpp @@ -69,7 +69,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const A& ex) { - test(ex.a_mem == 1); + test(ex.aMem == 1); } catch (...) { @@ -83,7 +83,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const A& ex) { - test(ex.a_mem == 1); + test(ex.aMem == 1); } catch (...) { @@ -97,7 +97,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const D& ex) { - test(ex.d_mem == -1); + test(ex.dMem == -1); } catch (...) { @@ -111,8 +111,8 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const B& ex) { - test(ex.a_mem == 1); - test(ex.b_mem == 2); + test(ex.aMem == 1); + test(ex.bMem == 2); } catch (...) { @@ -126,9 +126,9 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const C& ex) { - test(ex.a_mem == 1); - test(ex.b_mem == 2); - test(ex.c_mem == 3); + test(ex.aMem == 1); + test(ex.bMem == 2); + test(ex.cMem == 3); } catch (...) { @@ -146,7 +146,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const A& ex) { - test(ex.a_mem == 1); + test(ex.aMem == 1); } catch (...) { @@ -160,8 +160,8 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const B& ex) { - test(ex.a_mem == 1); - test(ex.b_mem == 2); + test(ex.aMem == 1); + test(ex.bMem == 2); } catch (...) { @@ -235,8 +235,8 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const B& ex) { - test(ex.a_mem == 1); - test(ex.b_mem == 2); + test(ex.aMem == 1); + test(ex.bMem == 2); } catch (...) { @@ -250,9 +250,9 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const C& ex) { - test(ex.a_mem == 1); - test(ex.b_mem == 2); - test(ex.c_mem == 3); + test(ex.aMem == 1); + test(ex.bMem == 2); + test(ex.cMem == 3); } catch (...) { @@ -266,9 +266,9 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const C& ex) { - test(ex.a_mem == 1); - test(ex.b_mem == 2); - test(ex.c_mem == 3); + test(ex.aMem == 1); + test(ex.bMem == 2); + test(ex.cMem == 3); } catch (...) { |