Assert.assertEquals(expected, value);
}
@Test
public void testFormatParser_simple_3() throws Exception {
final OtpErlangObject value = OtpErlang.format("~x");
final OtpErlangObject expected = OtpErlang.parse("~x");
Assert.assertEquals(expected, value);
}