public void testPagedResultsResponseControl011() {
try {
byte[] b={48,5,2,1,0,4,0};
byte[] c={48,5,2,1,0,4,0};
PagedResultsResponseControl x=new PagedResultsResponseControl("",false,b);
byte[] aux = x.getEncodedValue().clone();
for (int i = 0; i < b.length; i++) {
b[i]=1;
}
for (int i = 0; i < b.length; i++) {
assertSame(c[i],aux[i]);
assertSame(b[i],x.getEncodedValue()[i]);
}
} catch (IOException e) {
fail("The arguments are ok.");
}
}