Package org.nfctools.ndef.records

Examples of org.nfctools.ndef.records.UnknownRecord


  @Test(expected = RuntimeException.class)
  public void testEncoderWithUnkownRecord() throws Exception {

    List<Record> records = new ArrayList<Record>();
    records.add(new UnknownRecord());
    encoder.encode(records);
  }
View Full Code Here

TOP

Related Classes of org.nfctools.ndef.records.UnknownRecord

Copyright © 2018 www.massapicom. 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.