-
Notifications
You must be signed in to change notification settings - Fork 253
Add IOFunctions tests #340
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #340 +/- ##
============================================
+ Coverage 39.5% 39.74% +0.23%
Complexity 5 5
============================================
Files 178 178
Lines 9265 9265
Branches 527 527
============================================
+ Hits 3660 3682 +22
+ Misses 5454 5430 -24
- Partials 151 153 +2
Continue to review full report at Codecov.
|
| ByteArrayOutputStream outContent = new ByteArrayOutputStream(); | ||
| PrintStream originalOut = System.out; | ||
| System.setOut(new PrintStream(outContent)); | ||
| runSafe(io).foreach(s -> runSafe(stdoutPrint(s))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the test is named testSequenceWhile but foreach is what is actually tested?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is sequenceWhile above. I could split to two tests ...
|
|
||
|
|
||
| @Test | ||
| public void testLift() throws IOException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is lift tested?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just moved this code from the other Test.java I deleted
Signed-off-by: Gábor Lipták <gliptak@gmail.com>
Signed-off-by: Gábor Lipták gliptak@gmail.com