Package ru.ifmo.diplom.kirilchuk.coders

Examples of ru.ifmo.diplom.kirilchuk.coders.StringBitInput


    decodeWithAssert("001", -1);
    decodeWithAssert("01111010101", -21);
  }
 
  private void decodeWithAssert(String value, int expect) throws Exception {
    StringBitInput in = new StringBitInput(value);
    int result = decoder.decodeNext(in);
    assertEquals(expect, result);
  }
View Full Code Here

TOP

Related Classes of ru.ifmo.diplom.kirilchuk.coders.StringBitInput

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.