LI123456mo opened a new pull request, #16009: URL: https://github.com/apache/dubbo/pull/16009
Overview This PR adds a unit test for the org.apache.dubbo.common.utils.CharSequenceComparator utility class. Currently, this class has no test coverage in the dubbo-common module. Changes I implemented CharSequenceComparatorTest.java to verify the comparison logic for various CharSequence implementations. The tests cover: Standard Strings: Basic alphabetical comparison. Mixed Types: Comparing String vs StringBuilder to ensure the CharSequence interface is handled correctly. Identity: Ensuring identical sequences return 0. Case Sensitivity: Verifying that the comparator follows standard String lexicographical rules (e.g., 'A' < 'a'). Verification Style: Ran mvn spotless:apply to ensure compliance with Dubbo coding standards. Tests: Executed mvn clean test -Dtest=CharSequenceComparatorTest -pl dubbo-common. Result: BUILD SUCCESS -- 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]
