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 /java/test/Slice/macros/Client.java | |
parent | Remove generated file (diff) | |
download | ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.tar.bz2 ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.tar.xz ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.zip |
ICE-5375 - minor edits
Diffstat (limited to 'java/test/Slice/macros/Client.java')
-rw-r--r-- | java/test/Slice/macros/Client.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/test/Slice/macros/Client.java b/java/test/Slice/macros/Client.java index 3ba7ac80f9c..ec92b74d8c3 100644 --- a/java/test/Slice/macros/Client.java +++ b/java/test/Slice/macros/Client.java @@ -22,22 +22,22 @@ public class Client throw new RuntimeException(); } } - + public static void main(String[] args) { int status = 0; try { - System.out.print("Testing Slice predefined macros... "); + System.out.print("testing Slice predefined macros... "); Default d = new Default(); test(d.x == 10); test(d.y == 10); - + NoDefault nd = new NoDefault(); test(nd.x != 10); test(nd.y != 10); - + JavaOnly c = new JavaOnly(); test(c.lang.equals("java")); test(c.version == Ice.Util.intVersion()); |