Commented out tests

This commit is contained in:
nathan 2018-01-30 17:15:12 +01:00
parent 7ec171fbf4
commit 49cba00f37
2 changed files with 46 additions and 46 deletions

View File

@ -62,28 +62,28 @@ class LockFreeIntBiMap<V> {
// section. Because of this, we can have unlimited reader threads all going at the same time, without contention (which is our // section. Because of this, we can have unlimited reader threads all going at the same time, without contention (which is our
// use-case 99% of the time) // use-case 99% of the time)
public static // public static
void main(String[] args) { // void main(String[] args) {
LockFreeIntBiMap<String> test = new LockFreeIntBiMap<>(); // LockFreeIntBiMap<String> test = new LockFreeIntBiMap<String>();
String one = "One"; // String one = "One";
String four = "Four"; // String four = "Four";
//
test.put(1, one); // test.put(1, one);
test.put(2, "Two"); // test.put(2, "Two");
test.put(3, "Three"); // test.put(3, "Three");
test.put(4, four); // test.put(4, four);
// try { // // try {
// test.put(1, four); // // test.put(1, four);
// } catch (IllegalArgumentException e) { // // } catch (IllegalArgumentException e) {
// } // // }
test.putForce(1, four); // test.putForce(1, four);
test.put(5, one); // test.put(5, one);
//
System.out.println(test.toString()); // System.out.println(test.toString());
//
System.out.println("Reverse"); // System.out.println("Reverse");
System.out.println(test.inverse().toString()); // System.out.println(test.inverse().toString());
} // }
/** /**
* Creates a new bimap using @{link Integer#MIN_VALUE}. * Creates a new bimap using @{link Integer#MIN_VALUE}.

View File

@ -43,30 +43,30 @@ public class ObjectIntMap<K> {
private int stashCapacity; private int stashCapacity;
private int pushIterations; private int pushIterations;
public static // public static
void main(String[] args) { // void main(String[] args) {
ObjectIntMap<String> test = new ObjectIntMap<>(4); // ObjectIntMap<String> test = new ObjectIntMap<String>(4);
String one = "One"; // String one = "One";
String four = "Four"; // String four = "Four";
//
test.put(one, 1); // test.put(one, 1);
test.put("Two", 2); // test.put("Two", 2);
test.put("Three", 3); // test.put("Three", 3);
test.put(four, 4); // test.put(four, 4);
test.put(four, 1); // test.put(four, 1);
test.put(one, 13); // test.put(one, 13);
//
ObjectIntMap<String> test2 = new ObjectIntMap<>(2); // ObjectIntMap<String> test2 = new ObjectIntMap<String>(2);
test2.put(one, 11); // test2.put(one, 11);
test2.put(four, 44); // test2.put(four, 44);
test2.put("Five", 55); // test2.put("Five", 55);
//
test2.putAll(test); // test2.putAll(test);
//
//
System.out.println(test.toString()); // System.out.println(test.toString());
System.out.println(test2.toString()); // System.out.println(test2.toString());
} // }
/** Creates a new map with an initial capacity of 32 and a load factor of 0.8. This map will hold 25 items before growing the /** Creates a new map with an initial capacity of 32 and a load factor of 0.8. This map will hold 25 items before growing the
* backing table. */ * backing table. */