(int len)
| 49 | static int TESTING_COUNT = 100; |
| 50 | |
| 51 | public static String strRand(int len) { |
| 52 | String str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; |
| 53 | Random random = new Random(); |
| 54 | StringBuffer sb = new StringBuffer(); |
| 55 | for(int i = 0; i < len; i++) { |
| 56 | int number = random.nextInt(62); |
| 57 | sb.append(str.charAt(number)); |
| 58 | } |
| 59 | |
| 60 | return sb.toString(); |
| 61 | } |
| 62 | |
| 63 | public static void prepareData(String sigName, String[] inputNames, |
| 64 | int[] dataTypes, long[][] shapes, |
no test coverage detected