Examples of OtpErlangMap


Examples of com.ericsson.otp.erlang.OtpErlangMap

    @SuppressWarnings("resource")
    private static void runTest(final byte[] in, final String out, final int err) {
  try {
      final OtpInputStream is = new OtpInputStream(in);

      final OtpErlangMap map = new OtpErlangMap(is);
      final String output = map.toString();
      if (!output.equals(out)) {
    fail("toString mismatch " + output + " <> " + out, err);
      }

      final OtpOutputStream os = new OtpOutputStream(map);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.