Package org.teavm.classlib.support

Examples of org.teavm.classlib.support.Support_MapTest2


    }

    @Test
  public void test_Constructor() {
    // Test for method java.util.LinkedHashMap()
    new Support_MapTest2(new LinkedHashMap<String, String>()).runTest();

    LinkedHashMap<Object, Object> hm2 = new LinkedHashMap<>();
    assertEquals("Created incorrect LinkedHashMap", 0, hm2.size());
  }
View Full Code Here


    }

    @Test
    public void test_Constructor() {
        // Test for method java.util.Hashtable()
        new Support_MapTest2(new Hashtable<String, String>()).runTest();

        Hashtable<String, String> h = new Hashtable<>();

        assertEquals("Created incorrect hashtable", 0, h.size());
    }
View Full Code Here

TOP

Related Classes of org.teavm.classlib.support.Support_MapTest2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.