Add test for FabricText

Reviewed By: mdvacca

Differential Revision: D7326562

fbshipit-source-id: e1229f84496e9181475979d757066e3796a24a3f
This commit is contained in:
Andrew Chen (Eng)
2018-03-20 00:58:16 -07:00
committed by Facebook Github Bot
parent c49afb174f
commit f136ae1362
4 changed files with 279 additions and 8 deletions
@@ -11,10 +11,9 @@ public class ArrayUtils {
public static int[] copyListToArray(List<Integer> list) {
int[] array = new int[list.size()];
for (int t = 0 ; t < list.size() ; t++) {
for (int t = 0; t < list.size(); t++) {
array[t] = list.get(t);
}
return array;
}
}