Home / Class/ TestMap Class — netty Architecture

TestMap Class — netty Architecture

Architecture documentation for the TestMap class in NetUtilTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f7d9ffb9_2c3a_006c_9dbc_493b7fe426a4["TestMap"]
  247fd383_8be2_1ea5_3be7_e0f229bce586["NetUtilTest.java"]
  f7d9ffb9_2c3a_006c_9dbc_493b7fe426a4 -->|defined in| 247fd383_8be2_1ea5_3be7_e0f229bce586
  1558a7d6_a34f_ea24_b731_d53d05a926f8["TestMap()"]
  f7d9ffb9_2c3a_006c_9dbc_493b7fe426a4 -->|method| 1558a7d6_a34f_ea24_b731_d53d05a926f8

Relationship Graph

Source Code

common/src/test/java/io/netty/util/NetUtilTest.java lines 39–49

    private static final class TestMap extends HashMap<String, String> {
        private static final long serialVersionUID = -298642816998608473L;

        TestMap(String... values) {
            for (int i = 0; i < values.length; i += 2) {
                String key = values[i];
                String value = values[i + 1];
                put(key, value);
            }
        }
    }

Frequently Asked Questions

What is the TestMap class?
TestMap is a class in the netty codebase, defined in common/src/test/java/io/netty/util/NetUtilTest.java.
Where is TestMap defined?
TestMap is defined in common/src/test/java/io/netty/util/NetUtilTest.java at line 39.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free