mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Fix unit tests by adding @UsedForTesting"
This commit is contained in:
commit
3f3b0af5b7
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
package com.android.inputmethod.latin.makedict;
|
package com.android.inputmethod.latin.makedict;
|
||||||
|
|
||||||
|
import com.android.inputmethod.annotations.UsedForTesting;
|
||||||
import com.android.inputmethod.latin.makedict.BinaryDictDecoderUtils.CharEncoding;
|
import com.android.inputmethod.latin.makedict.BinaryDictDecoderUtils.CharEncoding;
|
||||||
import com.android.inputmethod.latin.makedict.FormatSpec.FormatOptions;
|
import com.android.inputmethod.latin.makedict.FormatSpec.FormatOptions;
|
||||||
import com.android.inputmethod.latin.makedict.FusionDictionary.PtNode;
|
import com.android.inputmethod.latin.makedict.FusionDictionary.PtNode;
|
||||||
@ -33,6 +34,7 @@ import java.util.Iterator;
|
|||||||
/**
|
/**
|
||||||
* An implementation of DictEncoder for version 2 binary dictionary.
|
* An implementation of DictEncoder for version 2 binary dictionary.
|
||||||
*/
|
*/
|
||||||
|
@UsedForTesting
|
||||||
public class Ver2DictEncoder implements DictEncoder {
|
public class Ver2DictEncoder implements DictEncoder {
|
||||||
|
|
||||||
private final File mDictFile;
|
private final File mDictFile;
|
||||||
@ -40,6 +42,7 @@ public class Ver2DictEncoder implements DictEncoder {
|
|||||||
private byte[] mBuffer;
|
private byte[] mBuffer;
|
||||||
private int mPosition;
|
private int mPosition;
|
||||||
|
|
||||||
|
@UsedForTesting
|
||||||
public Ver2DictEncoder(final File dictFile) {
|
public Ver2DictEncoder(final File dictFile) {
|
||||||
mDictFile = dictFile;
|
mDictFile = dictFile;
|
||||||
mOutStream = null;
|
mOutStream = null;
|
||||||
@ -49,6 +52,7 @@ public class Ver2DictEncoder implements DictEncoder {
|
|||||||
// This constructor is used only by BinaryDictOffdeviceUtilsTests.
|
// This constructor is used only by BinaryDictOffdeviceUtilsTests.
|
||||||
// If you want to use this in the production code, you should consider keeping consistency of
|
// If you want to use this in the production code, you should consider keeping consistency of
|
||||||
// the interface of Ver3DictDecoder by using factory.
|
// the interface of Ver3DictDecoder by using factory.
|
||||||
|
@UsedForTesting
|
||||||
public Ver2DictEncoder(final OutputStream outStream) {
|
public Ver2DictEncoder(final OutputStream outStream) {
|
||||||
mDictFile = null;
|
mDictFile = null;
|
||||||
mOutStream = outStream;
|
mOutStream = outStream;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user