Package com.google.code.yanf4j.test.unittest.utils

Source Code of com.google.code.yanf4j.test.unittest.utils.ShiftOrByteBufferMatcherTest

package com.google.code.yanf4j.test.unittest.utils;

import com.google.code.yanf4j.buffer.IoBuffer;
import com.google.code.yanf4j.util.ByteBufferMatcher;
import com.google.code.yanf4j.util.ShiftOrByteBufferMatcher;

public class ShiftOrByteBufferMatcherTest  extends ByteBufferMatcherTest {
  @Override
  public ByteBufferMatcher createByteBufferMatcher(String hello) {
    ByteBufferMatcher m = new ShiftOrByteBufferMatcher(IoBuffer.wrap(hello
        .getBytes()));
    return m;
  }
}
TOP

Related Classes of com.google.code.yanf4j.test.unittest.utils.ShiftOrByteBufferMatcherTest

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.