diff --git a/src/org/mozilla/universalchardet/prober/statemachine/PkgIntTest.java b/src/org/mozilla/universalchardet/prober/statemachine/PkgIntTest.java
deleted file mode 100644
index 3c46cf4..0000000
--- a/src/org/mozilla/universalchardet/prober/statemachine/PkgIntTest.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package org.mozilla.universalchardet.prober.statemachine;
-
-import static org.junit.Assert.*;
-
-import org.junit.Test;
-
-public class PkgIntTest
-{
-    @Test
-    public void testUnpack()
-    {
-        int[] data = new int[] {
-                PkgInt.pack4bits(0, 1, 2, 3, 4, 5, 6, 7),
-                PkgInt.pack4bits(8, 9, 10, 11, 12, 13, 14, 15)
-        };
-        
-        PkgInt pkg = new PkgInt(
-                PkgInt.INDEX_SHIFT_4BITS,
-                PkgInt.SHIFT_MASK_4BITS,
-                PkgInt.BIT_SHIFT_4BITS,
-                PkgInt.UNIT_MASK_4BITS,
-                data);
-
-        for (int i=0; i<16; ++i) {
-            int n = pkg.unpack(i);
-            if (n != i) {
-                fail("Invalid packed value.");
-            }
-        }
-    }
-}
