Merge "Quit using try catch in addAndWriteRandomWords."

main
Keisuke Kuroyanagi 2014-09-23 10:19:04 +00:00 committed by Android (Google) Code Review
commit 230b343e8c
1 changed files with 3 additions and 7 deletions

View File

@ -213,13 +213,9 @@ public class UserHistoryDictionaryTests extends AndroidTestCase {
final int numberOfWords = 1000;
final Random random = new Random(123456);
try {
clearHistory(dict);
addAndWriteRandomWords(dict, numberOfWords, random, true /* checksContents */);
} finally {
checkExistenceAndRemoveDictFile(dict, dictFile);
}
clearHistory(dict);
addAndWriteRandomWords(dict, numberOfWords, random, true /* checksContents */);
checkExistenceAndRemoveDictFile(dict, dictFile);
}
public void testStressTestForSwitchingLanguagesAndAddingWords() {