pjfanning opened a new pull request, #1083:
URL: https://github.com/apache/poi/pull/1083
- Replace assertTrue(x instanceof Y) → assertInstanceOf(Y.class, x) (JUnit 5)
- Replace assertTrue(str.startsWith("lit")) → assertStartsWith(str, "lit")
(POITestCase)
- Replace assertTrue(str.endsWith("lit")) → assertEndsWith(str, "lit")
(POITestCase)
- Replace assertTrue(str.contains("lit")) → assertContains(str, "lit")
(POITestCase)
- Replace assertFalse(str.contains("lit")) → assertNotContains(str, "lit")
(POITestCase)
- Add missing
assertInstanceOf/assertStartsWith/assertEndsWith/assertContains/assertNotContains
imports
- Remove assertTrue/assertFalse imports from files where they are no longer
used
- Sort all static and regular imports alphabetically (case-sensitive/ASCII
order) in changed files
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]