package me.lemire.integercompression; import java.util.Arrays; import org.junit.Test; import static org.junit.Assert.*; /** * Static utility methods for test. */ public class TestUtils { /** * */ @Test public void testPacking() { int[] outputarray = new int[32]; for(int b = 1; b < 32; ++b) { int[] data = new int[32]; int[] newdata = new int[32]; int mask = (1<