Package org.nfctools.mf.tlv

Examples of org.nfctools.mf.tlv.LockControlTlv.toBytes()


public class MemoyLayoutTest {

  @Test
  public void testLockControlTlv() throws Exception {
    LockControlTlv lockControlTlv = MemoryLayout.ULTRALIGHT_C.createLockControlTlv();
    assertArrayEquals(new byte[] { (byte)0xA0, 0x10, 0x44 }, lockControlTlv.toBytes());
  }

  @Test
  public void testCreateCapabilityBlockUltralightC() throws Exception {
    CapabilityBlock capabilityBlock = MemoryLayout.ULTRALIGHT_C.createCapabilityBlock();
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.