summaryrefslogtreecommitdiff
path: root/java/test/Freeze/dbmap/Client.java
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-02-19 13:20:06 +0000
committerMarc Laukien <marc@zeroc.com>2004-02-19 13:20:06 +0000
commit3d1e4a101bd5d2efbd52f25d62cee4278fc58a9f (patch)
treee8ed767e7210a6c0cf685885d2278daf4b11a5c0 /java/test/Freeze/dbmap/Client.java
parentfix (diff)
downloadice-3d1e4a101bd5d2efbd52f25d62cee4278fc58a9f.tar.bz2
ice-3d1e4a101bd5d2efbd52f25d62cee4278fc58a9f.tar.xz
ice-3d1e4a101bd5d2efbd52f25d62cee4278fc58a9f.zip
fixes
Diffstat (limited to 'java/test/Freeze/dbmap/Client.java')
-rw-r--r--java/test/Freeze/dbmap/Client.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/java/test/Freeze/dbmap/Client.java b/java/test/Freeze/dbmap/Client.java
index c14c712cf50..564db79a49c 100644
--- a/java/test/Freeze/dbmap/Client.java
+++ b/java/test/Freeze/dbmap/Client.java
@@ -214,7 +214,7 @@ public class Client
int j;
- System.out.print(" testing populate... ");
+ System.out.print("testing populate... ");
System.out.flush();
for(j = 0; j < alphabet.length(); ++j)
{
@@ -236,7 +236,7 @@ public class Client
test(!m.isEmpty());
System.out.println("ok");
- System.out.print(" testing erase... ");
+ System.out.print("testing erase... ");
System.out.flush();
m.remove(new Byte((byte)'a'));
m.remove(new Byte((byte)'b'));
@@ -257,7 +257,7 @@ public class Client
populateDB(connection, m);
{
- System.out.print(" testing keySet... ");
+ System.out.print("testing keySet... ");
System.out.flush();
java.util.Set keys = m.keySet();
test(keys.size() == alphabet.length());
@@ -275,7 +275,7 @@ public class Client
}
{
- System.out.print(" testing values... ");
+ System.out.print("testing values... ");
System.out.flush();
java.util.Collection values = m.values();
test(values.size() == alphabet.length());
@@ -293,7 +293,7 @@ public class Client
}
{
- System.out.print(" testing entrySet... ");
+ System.out.print("testing entrySet... ");
System.out.flush();
java.util.Set entrySet = m.entrySet();
test(entrySet.size() == alphabet.length());
@@ -312,7 +312,7 @@ public class Client
}
{
- System.out.print(" testing iterator.remove... ");
+ System.out.print("testing iterator.remove... ");
System.out.flush();
test(m.size() == 26);
@@ -350,7 +350,7 @@ public class Client
test(m.get(new Byte((byte)'n')) == null);
test(m.get(new Byte((byte)'z')) == null);
- System.out.print(" repopulate... ");
+ System.out.print("repopulate... ");
//
// Re-populate.
//
@@ -379,7 +379,7 @@ public class Client
}
{
- System.out.print(" testing entry.setValue... ");
+ System.out.print("testing entry.setValue... ");
System.out.flush();
//
@@ -424,7 +424,7 @@ public class Client
((Freeze.Map) m).closeAllIterators();
{
- System.out.print(" testing concurrent access... ");
+ System.out.print("testing concurrent access... ");
System.out.flush();
m.clear();
@@ -499,7 +499,6 @@ public class Client
envName += "db";
}
- System.out.println("testing encoding...");
status = run(args, communicator, envName, "binary");
}
catch(DatabaseException ex)