Package ru.ifmo.diplom.kirilchuk.coders

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


//    encodeWithAssert(1, "101");
//    encodeWithAssert(21, "11111010101");
  }
 
  private void encodeWithAssert(int value, String expected) throws Exception {
    StringBitOutput out = new StringBitOutput();
    encoder.encode(value, out);
    assertEquals(expected, out.getOutputedString());
  }
View Full Code Here

TOP

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

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.