Skip to content
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

Enabled MethodName #5143

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

VedSansare89
Copy link

@VedSansare89 VedSansare89 commented May 6, 2024

Uncommented the MethodName in checkstyle.xml and checked if there's any error.

Related to #5119.

  • I have read CONTRIBUTING.md.
  • This pull request is all my own work -- I have not plagiarized it.
  • All filenames are in PascalCase.
  • All functions and variable names follow Java naming conventions.
  • All new algorithms have a URL in their comments that points to Wikipedia or other similar explanations.
  • All new code is formatted with clang-format -i --style=file path/to/your/file.java

Uncommented the MethodName in checkstyle.xml and checked if there's any error.
@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 37.54%. Comparing base (414835d) to head (81345ba).

Additional details and impacted files
@@             Coverage Diff              @@
##             master    #5143      +/-   ##
============================================
- Coverage     37.55%   37.54%   -0.01%     
+ Complexity     2364     2363       -1     
============================================
  Files           517      517              
  Lines         15605    15605              
  Branches       2965     2965              
============================================
- Hits           5860     5859       -1     
  Misses         9458     9458              
- Partials        287      288       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@vil02
Copy link
Member

vil02 commented May 6, 2024

I think you still need to do some renaming (log):

2024-05-06T15:27:55.5774354Z [ERROR] src/main/java/com/thealgorithms/sorts/MergeSortNoExtraSpace.java:[11,24] (naming) MethodName: Name 'call_merge_sort' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5776017Z [ERROR] src/main/java/com/thealgorithms/sorts/MergeSortNoExtraSpace.java:[16,24] (naming) MethodName: Name 'merge_sort' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5777714Z [ERROR] src/main/java/com/thealgorithms/sorts/MergeSortNoExtraSpace.java:[25,24] (naming) MethodName: Name 'implement_merge_sort' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5779343Z [ERROR] src/main/java/com/thealgorithms/backtracking/PowerSum.java:[19,17] (naming) MethodName: Name 'Sum' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5780809Z [ERROR] src/main/java/com/thealgorithms/ciphers/DES.java:[107,20] (naming) MethodName: Name 'XOR' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5782558Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/MatrixChainRecursiveTopDownMemoisation.java:[11,16] (naming) MethodName: Name 'Memoized_Matrix_Chain' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5784671Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/MatrixChainRecursiveTopDownMemoisation.java:[22,16] (naming) MethodName: Name 'Lookup_Chain' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5786588Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/LongestIncreasingSubsequence.java:[37,24] (naming) MethodName: Name 'LIS' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5788343Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/LongestPalindromicSubstring.java:[19,27] (naming) MethodName: Name 'LPS' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5790280Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/LongestAlternatingSubsequence.java:[17,16] (naming) MethodName: Name 'AlternatingLength' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5792340Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/LongestPalindromicSubsequence.java:[20,26] (naming) MethodName: Name 'LPS' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5794415Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/WineProblem.java:[17,23] (naming) MethodName: Name 'WPRecursion' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5796044Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/WineProblem.java:[32,23] (naming) MethodName: Name 'WPTD' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5797642Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/WineProblem.java:[54,23] (naming) MethodName: Name 'WPBU' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5799351Z [ERROR] src/main/java/com/thealgorithms/dynamicprogramming/KadaneAlgorithm.java:[11,27] (naming) MethodName: Name 'max_Sum' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5801203Z [ERROR] src/main/java/com/thealgorithms/others/LineSweep.java:[21,23] (naming) MethodName: Name 'FindMaximumEndPoint' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5803163Z [ERROR] src/main/java/com/thealgorithms/others/CountChar.java:[12,23] (naming) MethodName: Name 'CountCharacters' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5806441Z [ERROR] src/main/java/com/thealgorithms/others/KMP.java:[18,24] (naming) MethodName: Name 'KMPmatcher' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5807943Z [ERROR] src/main/java/com/thealgorithms/others/KochSnowflake.java:[81,38] (naming) MethodName: Name 'Iterate' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5809532Z [ERROR] src/main/java/com/thealgorithms/others/KochSnowflake.java:[97,33] (naming) MethodName: Name 'GetKochSnowflake' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5811191Z [ERROR] src/main/java/com/thealgorithms/others/KochSnowflake.java:[126,39] (naming) MethodName: Name 'IterationStep' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5812730Z [ERROR] src/main/java/com/thealgorithms/others/KochSnowflake.java:[150,34] (naming) MethodName: Name 'GetImage' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5814313Z [ERROR] src/main/java/com/thealgorithms/misc/ThreeSumProblem.java:[33,32] (naming) MethodName: Name 'BruteForce' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5815931Z [ERROR] src/main/java/com/thealgorithms/misc/ThreeSumProblem.java:[54,32] (naming) MethodName: Name 'TwoPointer' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5817482Z [ERROR] src/main/java/com/thealgorithms/misc/ThreeSumProblem.java:[84,32] (naming) MethodName: Name 'Hashmap' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5819065Z [ERROR] src/main/java/com/thealgorithms/datastructures/heaps/LeftistHeap.java:[91,16] (naming) MethodName: Name 'extract_min' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5820837Z [ERROR] src/main/java/com/thealgorithms/datastructures/heaps/LeftistHeap.java:[101,31] (naming) MethodName: Name 'in_order' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5822580Z [ERROR] src/main/java/com/thealgorithms/datastructures/heaps/LeftistHeap.java:[108,18] (naming) MethodName: Name 'in_order_aux' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5824281Z [ERROR] src/main/java/com/thealgorithms/datastructures/trees/GenericTree.java:[31,18] (naming) MethodName: Name 'create_treeG' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5825990Z [ERROR] src/main/java/com/thealgorithms/datastructures/trees/GenericTree.java:[57,18] (naming) MethodName: Name 'display_1' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5827710Z [ERROR] src/main/java/com/thealgorithms/datastructures/trees/nearestRightKey.java:[18,27] (naming) MethodName: Name 'BuildTree' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5829460Z [ERROR] src/main/java/com/thealgorithms/maths/SquareRootWithBabylonianMethod.java:[11,25] (naming) MethodName: Name 'square_Root' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5831445Z [ERROR] src/main/java/com/thealgorithms/maths/TrinomialTriangle.java:[12,23] (naming) MethodName: Name 'TrinomialValue' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5833018Z [ERROR] src/main/java/com/thealgorithms/searches/KMPSearch.java:[5,9] (naming) MethodName: Method Name 'KMPSearch' must not equal the enclosing class name.
2024-05-06T15:27:55.5834547Z [ERROR] src/main/java/com/thealgorithms/searches/KMPSearch.java:[5,9] (naming) MethodName: Name 'KMPSearch' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5836245Z [ERROR] src/main/java/com/thealgorithms/searches/BinarySearch2dArray.java:[13,18] (naming) MethodName: Name 'BinarySearch' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5837954Z [ERROR] src/main/java/com/thealgorithms/searches/OrderAgnosticBinarySearch.java:[16,16] (naming) MethodName: Name 'BinSearchAlgo' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5839703Z [ERROR] src/test/java/com/thealgorithms/sorts/SelectionSortTest.java:[11,10] (naming) MethodName: Name 'IntegerArrTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5841800Z [ERROR] src/test/java/com/thealgorithms/sorts/SelectionSortTest.java:[20,10] (naming) MethodName: Name 'StringArrTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5843483Z [ERROR] src/test/java/com/thealgorithms/sorts/WiggleSortTest.java:[11,10] (naming) MethodName: Name 'WiggleTestNumbersEven' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5845232Z [ERROR] src/test/java/com/thealgorithms/sorts/WiggleSortTest.java:[20,10] (naming) MethodName: Name 'WiggleTestNumbersOdd' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5846945Z [ERROR] src/test/java/com/thealgorithms/sorts/WiggleSortTest.java:[29,10] (naming) MethodName: Name 'WiggleTestNumbersOddDuplicates' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5848702Z [ERROR] src/test/java/com/thealgorithms/sorts/WiggleSortTest.java:[38,10] (naming) MethodName: Name 'WiggleTestNumbersOddMultipleDuplicates' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5850632Z [ERROR] src/test/java/com/thealgorithms/sorts/WiggleSortTest.java:[47,10] (naming) MethodName: Name 'WiggleTestNumbersEvenMultipleDuplicates' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5852415Z [ERROR] src/test/java/com/thealgorithms/sorts/WiggleSortTest.java:[57,10] (naming) MethodName: Name 'WiggleTestNumbersEvenDuplicates' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5854097Z [ERROR] src/test/java/com/thealgorithms/sorts/WiggleSortTest.java:[66,10] (naming) MethodName: Name 'WiggleTestStrings' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5855771Z [ERROR] src/test/java/com/thealgorithms/sorts/StrandSortTest.java:[13,17] (naming) MethodName: Name 'StrandSortNonDuplicateTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5857442Z [ERROR] src/test/java/com/thealgorithms/sorts/StrandSortTest.java:[25,17] (naming) MethodName: Name 'StrandSortDuplicateTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5859141Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[14,10] (naming) MethodName: Name 'DNFSTestOdd' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5860979Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[27,10] (naming) MethodName: Name 'DNFSTestEven' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5862710Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[40,10] (naming) MethodName: Name 'DNFSTestEvenStrings' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5864439Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[53,10] (naming) MethodName: Name 'DNFSTestOddStrings' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.5866277Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[66,10] (naming) MethodName: Name 'DNFSTestOddMidGiven' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6003354Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[79,10] (naming) MethodName: Name 'DNFSTestEvenMidGiven' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6006502Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[92,10] (naming) MethodName: Name 'DNFSTestEvenStringsMidGiven' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6008345Z [ERROR] src/test/java/com/thealgorithms/sorts/DutchNationalFlagSortTest.java:[105,10] (naming) MethodName: Name 'DNFSTestOddStringsMidGiven' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6010140Z [ERROR] src/test/java/com/thealgorithms/sorts/BinaryInsertionSortTest.java:[13,17] (naming) MethodName: Name 'BinaryInsertionSortTestNonDuplicate' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6011938Z [ERROR] src/test/java/com/thealgorithms/sorts/BinaryInsertionSortTest.java:[21,17] (naming) MethodName: Name 'BinaryInsertionSortTestDuplicate' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6013903Z [ERROR] src/test/java/com/thealgorithms/sorts/IntrospectiveSortTest.java:[11,17] (naming) MethodName: Name 'StrandSortNonDuplicateTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6015593Z [ERROR] src/test/java/com/thealgorithms/sorts/IntrospectiveSortTest.java:[19,17] (naming) MethodName: Name 'StrandSortDuplicateTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6017234Z [ERROR] src/test/java/com/thealgorithms/sorts/IntrospectiveSortTest.java:[27,17] (naming) MethodName: Name 'StrandSortEmptyTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6018851Z [ERROR] src/test/java/com/thealgorithms/sorts/IntrospectiveSortTest.java:[35,17] (naming) MethodName: Name 'StrandSortNullTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6020483Z [ERROR] src/test/java/com/thealgorithms/sorts/IntrospectiveSortTest.java:[42,17] (naming) MethodName: Name 'StrandSortNegativeTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6022189Z [ERROR] src/test/java/com/thealgorithms/sorts/IntrospectiveSortTest.java:[50,17] (naming) MethodName: Name 'StrandSortNegativeAndPositiveTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6023820Z [ERROR] src/test/java/com/thealgorithms/sorts/ShellSortTest.java:[12,17] (naming) MethodName: Name 'ShellSortEmptyArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6025377Z [ERROR] src/test/java/com/thealgorithms/sorts/ShellSortTest.java:[20,17] (naming) MethodName: Name 'ShellSortSingleIntegerArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6026963Z [ERROR] src/test/java/com/thealgorithms/sorts/ShellSortTest.java:[28,17] (naming) MethodName: Name 'ShellSortSingleStringArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6028586Z [ERROR] src/test/java/com/thealgorithms/sorts/ShellSortTest.java:[36,17] (naming) MethodName: Name 'ShellSortNonDuplicateIntegerArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6030223Z [ERROR] src/test/java/com/thealgorithms/sorts/ShellSortTest.java:[44,17] (naming) MethodName: Name 'ShellSortDuplicateIntegerArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6031857Z [ERROR] src/test/java/com/thealgorithms/sorts/ShellSortTest.java:[52,17] (naming) MethodName: Name 'ShellSortNonDuplicateStringArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6033475Z [ERROR] src/test/java/com/thealgorithms/sorts/ShellSortTest.java:[60,17] (naming) MethodName: Name 'ShellSortDuplicateStringArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6035101Z [ERROR] src/test/java/com/thealgorithms/strings/ReverseStringTest.java:[10,17] (naming) MethodName: Method Name 'ReverseStringTest' must not equal the enclosing class name.
2024-05-06T15:27:55.6036695Z [ERROR] src/test/java/com/thealgorithms/strings/ReverseStringTest.java:[10,17] (naming) MethodName: Name 'ReverseStringTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6038532Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/KnapsackMemoizationTest.java:[12,10] (naming) MethodName: Name 'Test1' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6040185Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/KnapsackMemoizationTest.java:[20,10] (naming) MethodName: Name 'Test2' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6042097Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/KnapsackMemoizationTest.java:[28,10] (naming) MethodName: Name 'Test3' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6043781Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[11,17] (naming) MethodName: Name 'testUniquePaths_3x3' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6045457Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[16,17] (naming) MethodName: Name 'testUniquePaths_1x1' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6047297Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[21,17] (naming) MethodName: Name 'testUniquePaths_3x7' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6048972Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[26,17] (naming) MethodName: Name 'testUniquePaths_7x3' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6050660Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[31,17] (naming) MethodName: Name 'testUniquePaths_100x100' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6052368Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[36,17] (naming) MethodName: Name 'testUniquePaths2_3x3' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6054042Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[41,17] (naming) MethodName: Name 'testUniquePaths2_1x1' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6055723Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[46,17] (naming) MethodName: Name 'testUniquePaths2_3x7' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6057395Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[51,17] (naming) MethodName: Name 'testUniquePaths2_7x3' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6059089Z [ERROR] src/test/java/com/thealgorithms/dynamicprogramming/UniquePathsTests.java:[56,17] (naming) MethodName: Name 'testUniquePaths2_100x100' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6060921Z [ERROR] src/test/java/com/thealgorithms/others/MaximumSumOfDistinctSubarraysWithLengthKTest.java:[9,17] (naming) MethodName: Name 'SampleTestCase1' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6062800Z [ERROR] src/test/java/com/thealgorithms/others/MaximumSumOfDistinctSubarraysWithLengthKTest.java:[14,17] (naming) MethodName: Name 'SampleTestCase2' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6064682Z [ERROR] src/test/java/com/thealgorithms/others/MaximumSumOfDistinctSubarraysWithLengthKTest.java:[19,17] (naming) MethodName: Name 'SampleTestCase3' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6066532Z [ERROR] src/test/java/com/thealgorithms/others/MaximumSumOfDistinctSubarraysWithLengthKTest.java:[24,17] (naming) MethodName: Name 'EdgeCase1' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6068339Z [ERROR] src/test/java/com/thealgorithms/others/MaximumSumOfDistinctSubarraysWithLengthKTest.java:[29,17] (naming) MethodName: Name 'EdgeCase2' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6070137Z [ERROR] src/test/java/com/thealgorithms/datastructures/lists/SinglyLinkedListTest.java:[169,10] (naming) MethodName: Name 'RecursiveReverseList' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6072145Z [ERROR] src/test/java/com/thealgorithms/datastructures/lists/SinglyLinkedListTest.java:[185,10] (naming) MethodName: Name 'RecursiveReverseListNullPointer' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6074020Z [ERROR] src/test/java/com/thealgorithms/datastructures/lists/SinglyLinkedListTest.java:[198,10] (naming) MethodName: Name 'RecursiveReverseListTest' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6075683Z [ERROR] src/test/java/com/thealgorithms/maths/AverageTest.java:[11,17] (naming) MethodName: Name 'testAverage_double_12' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6077161Z [ERROR] src/test/java/com/thealgorithms/maths/AverageTest.java:[17,17] (naming) MethodName: Name 'testAverage_double_20' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6078656Z [ERROR] src/test/java/com/thealgorithms/maths/AverageTest.java:[23,17] (naming) MethodName: Name 'testAverage_double_4_5' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6080147Z [ERROR] src/test/java/com/thealgorithms/maths/AverageTest.java:[29,17] (naming) MethodName: Name 'testAverage_int_5' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6082097Z [ERROR] src/test/java/com/thealgorithms/maths/PythagoreanTripleTest.java:[10,17] (naming) MethodName: Name 'Testpythagoreantriple' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6083836Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[13,17] (naming) MethodName: Name 'BinarySearch2dArrayTestMiddle' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6085630Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[25,17] (naming) MethodName: Name 'BinarySearch2dArrayTestMiddleSide' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6087419Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[37,17] (naming) MethodName: Name 'BinarySearch2dArrayTestUpper' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6089201Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[49,17] (naming) MethodName: Name 'BinarySearch2dArrayTestUpperSide' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6090986Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[61,17] (naming) MethodName: Name 'BinarySearch2dArrayTestLower' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6092754Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[73,17] (naming) MethodName: Name 'BinarySearch2dArrayTestLowerSide' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6094544Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[85,17] (naming) MethodName: Name 'BinarySearch2dArrayTestNotFound' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6096312Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[99,17] (naming) MethodName: Name 'BinarySearch2dArrayTestOneRow' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6098137Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[115,17] (naming) MethodName: Name 'BinarySearch2dArrayTestTargetInMiddle' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6100116Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[132,17] (naming) MethodName: Name 'BinarySearch2dArrayTestTargetAboveMiddleRowInMiddleColumn' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6102058Z [ERROR] src/test/java/com/thealgorithms/searches/BinarySearch2dArrayTest.java:[150,17] (naming) MethodName: Name 'BinarySearch2dArrayTestEmptyArray' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6103737Z [ERROR] src/test/java/com/thealgorithms/searches/KMPSearchTest.java:[11,17] (naming) MethodName: Name 'KMPSearchTestLast' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6105284Z [ERROR] src/test/java/com/thealgorithms/searches/KMPSearchTest.java:[22,17] (naming) MethodName: Name 'KMPSearchTestFront' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6106995Z [ERROR] src/test/java/com/thealgorithms/searches/KMPSearchTest.java:[33,17] (naming) MethodName: Name 'KMPSearchTestMiddle' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6108554Z [ERROR] src/test/java/com/thealgorithms/searches/KMPSearchTest.java:[44,17] (naming) MethodName: Name 'KMPSearchTestNotFound' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6110082Z [ERROR] src/test/java/com/thealgorithms/searches/KMPSearchTest.java:[55,17] (naming) MethodName: Name 'KMPSearchTest4' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6111719Z [ERROR] src/test/java/com/thealgorithms/searches/RabinKarpAlgorithmTest.java:[12,10] (naming) MethodName: Name 'RabinKarpAlgorithmTestExample' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6113451Z [ERROR] src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java:[10,17] (naming) MethodName: Name 'ElementInMiddle' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6115307Z [ERROR] src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java:[20,17] (naming) MethodName: Name 'RightHalfDescOrder' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6117035Z [ERROR] src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java:[30,17] (naming) MethodName: Name 'LeftHalfDescOrder' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6118751Z [ERROR] src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java:[40,17] (naming) MethodName: Name 'RightHalfAscOrder' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6121224Z [ERROR] src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java:[50,17] (naming) MethodName: Name 'LeftHalfAscOrder' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6123043Z [ERROR] src/test/java/com/thealgorithms/searches/OrderAgnosticBinarySearchTest.java:[60,17] (naming) MethodName: Name 'ElementNotFound' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6124996Z [ERROR] src/test/java/com/thealgorithms/searches/RowColumnWiseSorted2dArrayBinarySearchTest.java:[40,17] (naming) MethodName: Name 'rowColumnSorted2dArray_BinarySearchTestUpper' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6127153Z [ERROR] src/test/java/com/thealgorithms/searches/RowColumnWiseSorted2dArrayBinarySearchTest.java:[55,17] (naming) MethodName: Name 'rowColumnSorted2dArray_BinarySearchTestUpperSide' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6129285Z [ERROR] src/test/java/com/thealgorithms/searches/RowColumnWiseSorted2dArrayBinarySearchTest.java:[70,17] (naming) MethodName: Name 'rowColumnSorted2dArray_BinarySearchTestLower' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6131423Z [ERROR] src/test/java/com/thealgorithms/searches/RowColumnWiseSorted2dArrayBinarySearchTest.java:[85,17] (naming) MethodName: Name 'rowColumnSorted2dArray_BinarySearchTestLowerSide' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6133596Z [ERROR] src/test/java/com/thealgorithms/searches/RowColumnWiseSorted2dArrayBinarySearchTest.java:[100,17] (naming) MethodName: Name 'rowColumnSorted2dArray_BinarySearchTestNotFound' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6135448Z [ERROR] src/test/java/com/thealgorithms/scheduling/SRTFSchedulingTest.java:[22,17] (naming) MethodName: Name 'Constructor' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6137070Z [ERROR] src/test/java/com/thealgorithms/scheduling/SJFSchedulingTest.java:[77,10] (naming) MethodName: Name 'schedulingOf_TwoProcesses' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6138798Z [ERROR] src/test/java/com/thealgorithms/scheduling/SJFSchedulingTest.java:[86,10] (naming) MethodName: Name 'schedulingOfA_ShortestJobArrivingLast' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6140604Z [ERROR] src/test/java/com/thealgorithms/scheduling/SJFSchedulingTest.java:[95,10] (naming) MethodName: Name 'scheduling_WithProcessesNotComingBackToBack' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6142539Z [ERROR] src/test/java/com/thealgorithms/scheduling/SJFSchedulingTest.java:[104,10] (naming) MethodName: Name 'schedulingOf_nothing' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6144377Z [ERROR] src/test/java/com/thealgorithms/divideandconquer/StrassenMatrixMultiplicationTest.java:[15,17] (naming) MethodName: Name 'StrassenMatrixMultiplicationTest2x2' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6146406Z [ERROR] src/test/java/com/thealgorithms/divideandconquer/StrassenMatrixMultiplicationTest.java:[24,10] (naming) MethodName: Name 'StrassenMatrixMultiplicationTest4x4' must match pattern '^[a-z][a-zA-Z0-9]*$'.
2024-05-06T15:27:55.6148517Z [ERROR] src/test/java/com/thealgorithms/divideandconquer/StrassenMatrixMultiplicationTest.java:[33,10] (naming) MethodName: Name 'StrassenMatrixMultiplicationTestNegetiveNumber4x4' must match pattern '^[a-z][a-zA-Z0-9]*$'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants