Assert.assertEquals(r.get("V"), new OtpErlangAtom("b"));
}
@Test
public void testMatch_0() throws Exception {
final Bindings b = new BindingsImpl();
b.put("W", new OtpErlangAtom("a"));
final Bindings r = OtpErlang.match("[W, V]", "[a, b]", b);
Assert.assertNotNull(r);
Assert.assertEquals(r.get("V"), new OtpErlangAtom("b"));
}