Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5cb75093 authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi
Browse files

Fix BinaryDictDecoderEncoderTests.

Bug: 12809791
Change-Id: I04313df78692b01e153a34c932a37f079a924105
parent de76e62b
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -108,6 +108,19 @@ public class BinaryDictDecoderEncoderTests extends AndroidTestCase {
        }
    }

    @Override
    protected void setUp() throws Exception {
        super.setUp();
        BinaryDictionary.setCurrentTimeForTest(0);
    }

    @Override
    protected void tearDown() throws Exception {
        super.tearDown();
        // Quit test mode.
        BinaryDictionary.setCurrentTimeForTest(-1);
    }

    private void generateWords(final int number, final Random random) {
        final int[] codePointSet = CodePointUtils.generateCodePointSet(DEFAULT_CODE_POINT_SET_SIZE,
                random);