diff options
author | Mark Spruiell <mes@zeroc.com> | 2013-07-17 12:24:30 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2013-07-17 12:24:30 -0700 |
commit | 972b4a46d012c5304b25363e0b5d56c70f6932dc (patch) | |
tree | 8df9e149fb198fc05c27b4ba779fdb334007ea5a /cpp/test/Slice/macros/Client.cpp | |
parent | Remove generated file (diff) | |
download | ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.tar.bz2 ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.tar.xz ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.zip |
ICE-5375 - minor edits
Diffstat (limited to 'cpp/test/Slice/macros/Client.cpp')
-rw-r--r-- | cpp/test/Slice/macros/Client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Slice/macros/Client.cpp b/cpp/test/Slice/macros/Client.cpp index b7955fa1367..1aa6e1d402d 100644 --- a/cpp/test/Slice/macros/Client.cpp +++ b/cpp/test/Slice/macros/Client.cpp @@ -20,15 +20,15 @@ main(int argc, char* argv[]) int status = EXIT_SUCCESS; try { - cout << "Testing Slice predefined macros... " << flush; + cout << "testing Slice predefined macros... " << flush; DefaultPtr d = new Default(); test(d->x == 10); test(d->y == 10); - + NoDefaultPtr nd = new NoDefault(); test(nd->x != 10); test(nd->y != 10); - + CppOnlyPtr c = new CppOnly(); test(c->lang == "cpp"); test(c->version == ICE_INT_VERSION); |