*/
@Test(groups={Global.FUNCTIONAL,Global.EAP_EXCLUDED},description="Functional tests of RingBuffer")
public class RingBufferTest {
public void testConstructor() {
RingBuffer buf=new RingBuffer(100, 1);
System.out.println("buf = " + buf);
assert buf.capacity() == Util.getNextHigherPowerOfTwo(100);
assert buf.size() == 0;
}