am 35ff07c7: Merge "Fix BinaryDictDecoderEncoderTests."

* commit '35ff07c70badbbc25dcc130cc92f043a66da1a00':
  Fix BinaryDictDecoderEncoderTests.
main
Keisuke Kuroyanagi 2014-01-31 08:21:47 -08:00 committed by Android Git Automerger
commit 91f67df440
1 changed files with 13 additions and 0 deletions

View File

@ -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) { private void generateWords(final int number, final Random random) {
final int[] codePointSet = CodePointUtils.generateCodePointSet(DEFAULT_CODE_POINT_SET_SIZE, final int[] codePointSet = CodePointUtils.generateCodePointSet(DEFAULT_CODE_POINT_SET_SIZE,
random); random);