Searched refs:childrenResult (Results 1 – 2 of 2) sorted by relevance
84 Collection<IFileEntry> childrenResult = new ArrayList<IFileEntry>(1); in setMockDirPath() local85 childrenResult.add(childMockEntry); in setMockDirPath()86 when(rootEntry.getChildren(Mockito.anyBoolean())).thenReturn(childrenResult); in setMockDirPath()
343 JSONArray childrenResult = result.optJSONArray("childrenResult"); in parseTestResultJson() local344 if (childrenResult != null) { in parseTestResultJson()345 for (int i = 0; i < childrenResult.length(); i++) { in parseTestResultJson()346 errors.addAll(parseTestResultJson(childrenResult.optJSONObject(i))); in parseTestResultJson()