0

So I am using java 8 and trying to write some tests with PowerMock and Mockito. I am getting a MethodNotFoundException with the message:

No methods matching the name(s) stream were found in the class hierarchy of class java.util.Arrays$ArrayList.

I double checked the ArrayList documentation and it definitely looks like it inherits stream from Collections. Is this a problem with PowerMockito or am I missing something?

Line in question

PowerMockito.when(thing.call("services", "things")).thenReturn(Arrays.asList("testService")); // Doesn't matter if it's new ArrayList<String>()));

Then has something like this called on it

services.stream().filter( x -> //filter).collect(Collectors.toList())

EDIT: After further research this appears to be a PowerMock Problem. Would love a solution.

4

2 回答 2

4

This appeared to be a bug in PowerMock 1.5.5 and has been solved in 1.5.6

Reference: https://github.com/jayway/powermock/issues/536

于 2015-10-27T14:21:01.267 回答
0

java.util.Arrays$ArrayList is an inner class of java.util.Arrays returned by Arrays.asList(), and is not the same as java.util.ArrayList.

If the stream() method can't be found, it might be because java.util.Arrays$ArrayList is private?

于 2015-10-27T14:15:55.710 回答