diff options
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()); |