use of tests.support.Support_MapTest2 in project robovm by robovm.
the class IdentityHashMapTest method test_Constructor.
/**
* java.util.IdentityHashMap#IdentityHashMap()
*/
public void test_Constructor() {
// Test for method java.util.IdentityHashMap()
new Support_MapTest2(new IdentityHashMap()).runTest();
IdentityHashMap hm2 = new IdentityHashMap();
assertEquals("Created incorrect IdentityHashMap", 0, hm2.size());
}
use of tests.support.Support_MapTest2 in project robovm by robovm.
the class LinkedHashMapTest method test_Constructor.
/**
* java.util.LinkedHashMap#LinkedHashMap()
*/
public void test_Constructor() {
// Test for method java.util.LinkedHashMap()
new Support_MapTest2(new LinkedHashMap()).runTest();
LinkedHashMap hm2 = new LinkedHashMap();
assertEquals("Created incorrect LinkedHashMap", 0, hm2.size());
}
use of tests.support.Support_MapTest2 in project robovm by robovm.
the class HashMapTest method test_Constructor.
/**
* java.util.HashMap#HashMap()
*/
public void test_Constructor() {
// Test for method java.util.HashMap()
new Support_MapTest2(new HashMap()).runTest();
HashMap hm2 = new HashMap();
assertEquals("Created incorrect HashMap", 0, hm2.size());
}
use of tests.support.Support_MapTest2 in project robovm by robovm.
the class HashtableTest method test_Constructor.
/**
* java.util.Hashtable#Hashtable()
*/
public void test_Constructor() {
// Test for method java.util.Hashtable()
new Support_MapTest2(new Hashtable()).runTest();
Hashtable h = new Hashtable();
assertEquals("Created incorrect hashtable", 0, h.size());
}
use of tests.support.Support_MapTest2 in project j2objc by google.
the class HashMapTest method test_Constructor.
/**
* java.util.HashMap#HashMap()
*/
public void test_Constructor() {
// Test for method java.util.HashMap()
new Support_MapTest2(new HashMap()).runTest();
HashMap hm2 = new HashMap();
assertEquals("Created incorrect HashMap", 0, hm2.size());
}
Aggregations