-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for java.util.stream
library
#302
Comments
I'll look into this issue and also create some unit tests for this issue to check whether it's working or not till then can you please assign this issue to me so that I'll start working on it |
Do I only need to create unit test for the |
You can start with a test that builds a stream pipeline for one of the data structures in that package (e.g., |
Okay got it |
Hi @cyrille-artho |
Is there requirement for more unit tests. I am just asking because this issue is still open. |
Guarang's work is in progress and close to finished. It seems that the streams library (at least for the common function) uses no native code and likely works as expected for simple cases. |
Sure, I'll look into it. |
Addressed by PR #305 |
Java 8 has introduced a new library to deal with large data structures, Java Streams:
https://docs.oracle.com/javase/8/docs/api/java/util/stream/package-summary.html
We don't have any unit tests for the new Java streams collections (
java.util.stream
), and thus we don't know how well JPF handles them (if at all).A few examples (unit tests) would be helpful to see if JPF can handle these cases at all (there may be missing native peer classes/methods), and what problems there might be.
The text was updated successfully, but these errors were encountered: