Skip to content

Bump jetty.version from 12.1.9 to 12.1.10#1137

Merged
carstenartur merged 1 commit into
mainfrom
dependabot/maven/jetty.version-12.1.10
Jun 9, 2026
Merged

Bump jetty.version from 12.1.9 to 12.1.10#1137
carstenartur merged 1 commit into
mainfrom
dependabot/maven/jetty.version-12.1.10

Bump jetty.version from 12.1.9 to 12.1.10

96f64f0
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Test Results succeeded Jun 8, 2026 in 0s

All 2 742 tests pass, 37 skipped in 3m 43s

  225 files    225 suites   3m 43s ⏱️
2 779 tests 2 742 ✅ 37 💤 0 ❌
2 776 runs  2 739 ✅ 37 💤 0 ❌

Results for commit 96f64f0.

Annotations

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

37 skipped tests found

There are 37 skipped tests, see "Raw output" for the full list of skipped tests.
Raw output
Additional Map+Filter Pattern Tests ‑ Complex chain: multiple transformations
DSL Hint File Integration Tests ‑ DSL: @Before marker annotation → @BeforeEach via annotations5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: @Ignore("reason") → @Disabled("reason") preserves value via annotations5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: Assert.assertEquals() → Assertions.assertEquals() via junit5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: Assert.assertThat() → MatcherAssert.assertThat() via junit5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: Assume.assumeTrue() → Assumptions.assumeTrue() via assume5.sandbox-hint
ExplicitEncodingCleanUpTest Java 10 ‑ testStringEncodingReplacementInsideTryCatchUnwrap
Issue #670: Strict Loop Refactoring Rules ‑ Loop modifying different collection - CAN convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with field access receiver (this.list.remove) - should NOT convert (BUG)
Issue #670: Strict Loop Refactoring Rules ‑ Loop with getter method receiver (getList().add) - should NOT convert (CRASHES)
Issue #670: Strict Loop Refactoring Rules ‑ Loop with map.put() on iterated map - should NOT convert (BUG)
Issue #670: Strict Loop Refactoring Rules ‑ Simple iterator loop on CopyOnWriteArrayList - CAN convert
Iterator Loop to Stream Conversion Tests ‑ External state modification prevents conversion - side effect
Iterator Loop to Stream Conversion Tests ‑ Iterator collect to List: stream().collect(Collectors.toList())
Iterator Loop to Stream Conversion Tests ‑ Iterator collect to Set: stream().collect(Collectors.toSet())
Iterator Loop to Stream Conversion Tests ‑ Iterator filter+collect: stream().filter(predicate).collect(toList())
Iterator Loop to Stream Conversion Tests ‑ Iterator filter+map+collect: stream().filter().map().collect()
Iterator Loop to Stream Conversion Tests ‑ Iterator map with method reference: stream().map(String::toUpperCase)
Iterator Loop to Stream Conversion Tests ‑ Iterator map+collect: stream().map(transform).collect(toList())
Iterator Loop to Stream Conversion Tests ‑ Iterator sum reduction: stream().mapToInt(i -> i).sum()
Loop Collect Pattern Refactoring Tests ‑ Array map+collect: Arrays.stream(arr).map(f).toList()
Loop Collect Pattern Refactoring Tests ‑ Array source collect: Arrays.stream(array).toList()
Loop Collect Pattern Refactoring Tests ‑ Side effects prevent collect conversion
Loop Refactoring Edge Cases and Boundary Conditions ‑ Unused element: lambda with unused parameter
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testBasicIfElseToEnumSwitch
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCombinationsTest ‑ migrates_suite_with_assertions_and_lifecycle
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ handles_combined_test_expected_and_timeout
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_junit4_rules_to_junit5_extensions(RuleCases)
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersAdvancedTest ‑ migrates_runWith_categories_to_suite_with_tags
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersAdvancedTest ‑ migrates_runWith_theories_to_parameterizedTest
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_test_timeout_with_other_parameters
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testChainedVisitorWithoutFirstMatchBug
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopMatchPatternTest ‑ test_ChainedAnyMatch
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopMatchPatternTest ‑ test_ChainedNoneMatch
org.sandbox.jdt.ui.tests.quickfix.Java9CleanUpTest ‑ testPlatformStatusParametrized(PlatformStatusPatterns)
org.sandbox.jdt.ui.tests.quickfix.MissingSuperDisposePluginTest ‑ testMissingSuperDisposeCleanup
org.sandbox.mining.core.MiningCliTest ‑ testFormatCommitInfoEscapesDoubleQuotesInTitle

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

2779 tests found (test 1 to 804)

There are 2779 tests, see "Raw output" for the list of tests 1 to 804.
Raw output
@RewriteRule Annotation Processing Tests ‑ @RewriteRule works in conjunction with @CleanupPattern
@RewriteRule Annotation Processing Tests ‑ Plugin with @RewriteRule is correctly processed
@RewriteRule Annotation Processing Tests ‑ Plugin without @RewriteRule and without overriding process2Rewrite throws appropriate error
ASCII Pipeline Diagram ‑ testArraySource
ASCII Pipeline Diagram ‑ testEmptyModel
ASCII Pipeline Diagram ‑ testFilterMapCollect
ASCII Pipeline Diagram ‑ testFinalElement
ASCII Pipeline Diagram ‑ testIntRangeSource
ASCII Pipeline Diagram ‑ testNullModel
ASCII Pipeline Diagram ‑ testOperationsWithComments
ASCII Pipeline Diagram ‑ testSimpleFilterForEach
AST Binding Diagnostics ‑ testAnnotationBindingStateForResolvedDeprecated
AST Binding Diagnostics ‑ testAnnotationBindingStateForUnresolvedRule
AST Binding Diagnostics ‑ testCompilerProblemsForUnresolvedTypes
Accumulator and Null-Safe Properties ‑ setAccumulatorType and getAccumulatorType work correctly
Accumulator and Null-Safe Properties ‑ setNullSafe and isNullSafe work correctly
Additional Loop Pattern Edge Cases ‑ Classic while-loop should NOT convert (no collection iteration)
Additional Loop Pattern Edge Cases ‑ Do-while loop should NOT convert (semantic incompatibility)
Additional Loop Pattern Edge Cases ‑ Do-while with guaranteed execution should NOT convert
Additional Loop Pattern Edge Cases ‑ For-each loop adding to empty list followed by sort - CAUTION: mutability issue
Additional Loop Pattern Edge Cases ‑ Index-based collection loop to IntStream.range()
Additional Loop Pattern Edge Cases ‑ Index-based for-loop to IntStream.range()
Additional Loop Pattern Edge Cases ‑ Iterator with internal hasNext() check should NOT convert
Additional Loop Pattern Edge Cases ‑ Multiple for-each loops populating same list should use Stream.concat()
Additional Loop Pattern Edge Cases ‑ Multiple iterators should NOT convert (no zip() in Java)
Additional Loop Pattern Edge Cases ‑ While-loop with method call condition should NOT convert
Additional Map+Filter Pattern Tests ‑ Combined filter: single filter with && condition
Additional Map+Filter Pattern Tests ‑ Complex chain: multiple transformations
Additional Map+Filter Pattern Tests ‑ Filter-first: stream().filter().map().forEach()
Additional Map+Filter Pattern Tests ‑ Filter-map-collect: stream().filter().map().collect()
Additional Map+Filter Pattern Tests ‑ Map-filter-map: multi-step transformation
Additional Map+Filter Pattern Tests ‑ Multiple filters: sequential conditions
Additional Map+Filter Pattern Tests ‑ Null-safe map: filter(item -> item != null).map()
Annotation Type Tests ‑ MarkerAnnotation transformation - @Before to @BeforeEach
Annotation Type Tests ‑ NormalAnnotation with explicit value attribute
Annotation Type Tests ‑ SingleMemberAnnotation preservation - @Ignore("reason") to @Disabled("reason")
Annotation/Field nodesprocessed Interaction Tests ‑ testAnnotationNodesprocessedDoesNotBlockFieldVisitor
Annotation/Field nodesprocessed Interaction Tests ‑ testExternalResourceVisitorDoesNotBlockErrorCollector
Annotation/Field nodesprocessed Interaction Tests ‑ testFullPipelineSimulation
AnnotationVisitorBuilder Tests ‑ testCollectAnnotations
AnnotationVisitorBuilder Tests ‑ testFindDeprecatedAnnotations
AnnotationVisitorBuilder Tests ‑ testFindOverrideAnnotations
AnnotationVisitorBuilder Tests ‑ testFindSuppressWarningsAnnotations
AnnotationVisitorBuilder Tests ‑ testValidationWithoutCompilationUnit
Basic Field Matching Tests ‑ testFindDeprecatedStringField
Basic Field Matching Tests ‑ testFindMultipleMatchingFields
Basic Field Matching Tests ‑ testNoMatchWhenAnnotationDiffers
Basic Field Matching Tests ‑ testNoMatchWhenTypeDiffers
Bidirectional Loop Transformation Tests ‑ Iterator → Stream: while-iterator to forEach
Bidirectional Loop Transformation Tests ‑ Stream → for: chained stream ops (filter) should NOT convert
Bidirectional Loop Transformation Tests ‑ Stream → for: chained stream ops (map) should NOT convert
Bidirectional Loop Transformation Tests ‑ Stream → for: comments in lambda body are preserved
Bidirectional Loop Transformation Tests ‑ Stream → for: forEach to enhanced for-loop
Bidirectional Loop Transformation Tests ‑ Stream → while: comments in lambda body are preserved
Bidirectional Loop Transformation Tests ‑ for → Stream: Basic forEach transformation
Bidirectional Loop Transformation Tests ‑ for → Stream: basic transformation succeeds
Bidirectional Loop Transformation Tests ‑ for → while: Enhanced for to iterator while-loop
Bidirectional Loop Transformation Tests ‑ for → while: comments in body are preserved
Bidirectional Loop Transformation Tests ‑ while → for: Iterator while-loop to enhanced for
Bidirectional Loop Transformation Tests ‑ while → for: comments in body are preserved
Bidirectional Loop Transformation Tests ‑ while → for: iterator.remove() should NOT convert
Binding Conversion ‑ convertMethodBindingNull
Binding Conversion ‑ convertMethodBindingNullDeclaringClass
Binding Conversion ‑ convertMethodBindingStatic
Binding Conversion ‑ convertMethodBindingWithParams
Binding Conversion ‑ convertTypeBindingArray
Binding Conversion ‑ convertTypeBindingGeneric
Binding Conversion ‑ convertTypeBindingNull
Binding Conversion ‑ convertTypeBindingPrimitive
Binding Conversion ‑ convertTypeBindingSimpleClass
Binding Conversion ‑ convertVariableBindingField
Binding Conversion ‑ convertVariableBindingNull
Binding Conversion ‑ convertVariableBindingParameter
Chaining and State Management ‑ testChaining_stopsAfterFirstMatch
Chaining and State Management ‑ testIsHandled_returnsTrueAfterMatch
CollectionModificationDetector Tests ‑ Should NOT detect getList().get() - non-modifying method
CollectionModificationDetector Tests ‑ Should NOT detect getter with arguments
CollectionModificationDetector Tests ‑ Should NOT detect modification on different collection
CollectionModificationDetector Tests ‑ Should NOT detect non-matching getter name
CollectionModificationDetector Tests ‑ Should NOT detect non-modifying methods
CollectionModificationDetector Tests ‑ Should detect fetchMap().put() modification
CollectionModificationDetector Tests ‑ Should detect getItems().add() modification
CollectionModificationDetector Tests ‑ Should detect getList().remove() modification
CollectionModificationDetector Tests ‑ Should detect list.add() modification
CollectionModificationDetector Tests ‑ Should detect list.addAll() modification
CollectionModificationDetector Tests ‑ Should detect list.clear() modification
CollectionModificationDetector Tests ‑ Should detect list.remove() modification
CollectionModificationDetector Tests ‑ Should detect list.removeIf() modification
CollectionModificationDetector Tests ‑ Should detect list.replaceAll() modification
CollectionModificationDetector Tests ‑ Should detect list.sort() modification
CollectionModificationDetector Tests ‑ Should detect map.compute() modification
CollectionModificationDetector Tests ‑ Should detect map.computeIfAbsent() modification
CollectionModificationDetector Tests ‑ Should detect map.computeIfPresent() modification
CollectionModificationDetector Tests ‑ Should detect map.merge() modification
CollectionModificationDetector Tests ‑ Should detect map.put() modification
CollectionModificationDetector Tests ‑ Should detect map.putIfAbsent() modification
CollectionModificationDetector Tests ‑ Should detect map.replace() modification
CollectionModificationDetector Tests ‑ Should detect retrieveData().clear() modification
CollectionModificationDetector Tests ‑ Should detect this.list.remove() modification
Comment Preservation Integration Tests ‑ Empty comments are not stored
Comment Preservation Integration Tests ‑ End-to-end: comments before if-continue are attached to FilterOp
Comment Preservation Integration Tests ‑ End-to-end: filter with trailing comment preserved
Comment Preservation Integration Tests ‑ End-to-end: trailing inline comments are attached to operations
Comment Preservation Integration Tests ‑ Extract comments from different positions in loop
Comment Preservation Integration Tests ‑ Extract comments from loop with leading comment
Comment Preservation Integration Tests ‑ Extract trailing comments on same line
Comment Preservation Integration Tests ‑ FilterOp with comments triggers block lambda rendering
Comment Preservation Integration Tests ‑ MapOp with comments triggers block lambda rendering
Comment Preservation Integration Tests ‑ Multiple operations can have independent comments
Comment Preservation Integration Tests ‑ Operations without comments use compact lambda
Complex Condition Tests ‑ Filter with AND condition
Complex Condition Tests ‑ Filter with OR condition
Complex Condition Tests ‑ Filter with instanceof check
Complex Condition Tests ‑ Filter with negated complex condition using continue
Complex Patterns That Should NOT Convert ‑ Loop modifying collection during iteration - should NOT convert
Complex Patterns That Should NOT Convert ‑ Loop with multiple different returns - should NOT convert
Complex Patterns That Should NOT Convert ‑ Loop with switch statement - should NOT convert
Complex Patterns That Should NOT Convert ‑ Loop with synchronized block - should NOT convert
Complex Patterns That Should NOT Convert ‑ Loop with try-catch - should NOT convert
Composite Matchers ‑ testIfBlockWithSingleStatement_matches
Composite Matchers ‑ testIfBlockWithSingleStatement_noMatchMultiple
Composite Matchers ‑ testIfThenStatementIs_directMatch
Composite Matchers ‑ testIfThenStatementIs_nonIfStatement
Composite Matchers ‑ testIfThenStatementIs_wrappedInBlock
Composite Matchers ‑ testIfTypeMapping_mapsResult
Composite Matchers ‑ testIfTypeMapping_nullResult
ConcurrentCollectionDetector Tests ‑ Should NOT detect ArrayList as concurrent
ConcurrentCollectionDetector Tests ‑ Should NOT detect HashMap as concurrent
ConcurrentCollectionDetector Tests ‑ Should NOT detect LinkedList as concurrent
ConcurrentCollectionDetector Tests ‑ Should NOT detect by qualified name - ArrayList
ConcurrentCollectionDetector Tests ‑ Should detect ConcurrentHashMap as concurrent
ConcurrentCollectionDetector Tests ‑ Should detect ConcurrentLinkedQueue as concurrent
ConcurrentCollectionDetector Tests ‑ Should detect ConcurrentSkipListMap as concurrent
ConcurrentCollectionDetector Tests ‑ Should detect CopyOnWriteArrayList as concurrent
ConcurrentCollectionDetector Tests ‑ Should detect CopyOnWriteArraySet as concurrent
ConcurrentCollectionDetector Tests ‑ Should detect LinkedBlockingQueue as concurrent
ConcurrentCollectionDetector Tests ‑ Should detect by qualified name - ConcurrentHashMap
ConcurrentCollectionDetector Tests ‑ Should detect by qualified name - CopyOnWriteArrayList
ConcurrentCollectionDetector Tests ‑ Should handle null qualified name
ConcurrentCollectionDetector Tests ‑ Should handle null type binding
Conditional Helpers ‑ testIfFirst_executesForFirst
Conditional Helpers ‑ testIfLast_doesNotExecuteForNonLast
Conditional Helpers ‑ testIfLast_executesForLast
Conditional Helpers ‑ testIfNotLast_executesForNonLast
Conditional Helpers ‑ testIfOnly_executesForOnly
ConfidenceScorer ‑ testScoreNonNullIgnore
ConfidenceScorer ‑ testScoreNonNullStructuralChild
ConfidenceScorer ‑ testScoreNullableAfterUsage
ConfidenceScorer ‑ testScoreNullableAnnotation
ConfidenceScorer ‑ testScoreNullableMapGet
ConfidenceScorer ‑ testScorePotentiallyNullable
ConfidenceScorer ‑ testScoreUnknownDefault
ConfidenceScorer ‑ testScoreUnknownField
ConfidenceScorer ‑ testScoreUnknownGetter
ConfidenceScorer ‑ testScoreUnknownParameter
Constructor with Expression ‑ Creates FILTER operation from expression
Constructor with Expression ‑ Creates MAP operation with produced variable
Constructor with skip index ‑ Creates result with skip index
Constructor with skip index ‑ Skip index 0 is valid
Constructor with variable name ‑ Allows null variable name
Constructor with variable name ‑ Creates result with current variable name
Constructor ‑ Creates context with all parameters
Constructor ‑ null AST throws exception
Constructor ‑ valid AST creates instance
Converter-Specific Constants ‑ MATH_CLASS_NAME is correct
Converter-Specific Constants ‑ UNUSED_PARAMETER_NAME is correct
DSL Hint File Integration Tests ‑ DSL: @Before marker annotation → @BeforeEach via annotations5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: @Ignore("reason") → @Disabled("reason") preserves value via annotations5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: Assert.assertEquals() → Assertions.assertEquals() via junit5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: Assert.assertThat() → MatcherAssert.assertThat() via junit5.sandbox-hint
DSL Hint File Integration Tests ‑ DSL: Assume.assumeTrue() → Assumptions.assumeTrue() via assume5.sandbox-hint
Data Collection with ReferenceHolder ‑ accumulatesDataAcrossMultipleNodeTypes
Data Collection with ReferenceHolder ‑ collectsNodesInReferenceHolder
Detailed Dump ‑ testFullModel
Detailed Dump ‑ testMapSideEffect
Detailed Dump ‑ testNullModel
Detailed Dump ‑ testOperationComments
Detailed Dump ‑ testReduceTerminal
Edge Case Tests ‑ Empty loop body - should NOT convert
Edge Case Tests ‑ Loop body uses this keyword
Edge Case Tests ‑ Loop over array - should convert to Arrays.stream()
Edge Case Tests ‑ Loop variable shadows instance field
Edge Case Tests ‑ Loop with generic type parameters
Edge Case Tests ‑ Loop with only comment - should NOT convert
Edge Cases and Corner Cases ‑ Chained method calls with potential null intermediate
Edge Cases and Corner Cases ‑ allMatch with null-safe equals comparison
Edge Cases and Corner Cases ‑ anyMatch with negated null check (find non-null)
Edge Cases and Corner Cases ‑ forEach with Optional.ofNullable
Edge Cases and Error Handling Tests ‑ Annotation value with special characters is preserved
Edge Cases and Error Handling Tests ‑ Empty string in annotation value is preserved
Edge Cases and Error Handling Tests ‑ Multiple annotations on same element are handled correctly
Edge Cases and Error Handling Tests ‑ Plugin with getPatterns() override works correctly
Edge Cases and Error Handling Tests ‑ Plugin without annotation and without override throws IllegalStateException
Edge Cases ‑ testContextChaining_withIfLast
Edge Cases ‑ testGetRemainingCount_zeroForLast
Edge Cases ‑ testSingleStatement_isFirstLastOnly
EnhancedForHandler ULR Integration Tests ‑ Array iteration with V2 uses Arrays.stream()
EnhancedForHandler ULR Integration Tests ‑ Loop with break should NOT be converted by V2
EnhancedForHandler ULR Integration Tests ‑ Loop with continue should be converted to filter by V2
EnhancedForHandler ULR Integration Tests ‑ Loop with return should NOT be converted by V2
EnhancedForHandler ULR Integration Tests ‑ Simple forEach conversion with V2
ExceptionCleanupHelper Tests ‑ testNotInstantiable
ExceptionCleanupHelper Tests ‑ testRemoveCheckedExceptionNullVisited
Existing Method Constants ‑ fieldUtf8IsUtf8
Existing Method Constants ‑ methodDefaultCharsetIsDefaultCharset
Existing Method Constants ‑ methodGetPropertyIsGetProperty
Existing Method Constants ‑ methodLineSeparatorIsLineSeparator
Existing Method Constants ‑ methodToStringIsToString
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[10] STRINGGETBYTES
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[11] STRING
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[12] PROPERTIESSTORETOXML
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[13] URLDECODER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[14] URLENCODER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[15] SCANNER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[16] FORMATTER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[17] THREE
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[18] ENCODINGASSTRINGPARAMETER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[19] FILES_NEWBUFFEREDREADER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[1] CHARSET
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[20] FILES_NEWBUFFEREDWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[21] FILES_READALLLINES
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[2] BYTEARRAYOUTSTREAM
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[3] FILEREADER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[4] FILEWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[5] INPUTSTREAMREADER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[6] OUTPUTSTREAMWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[7] CHANNELSNEWREADER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[8] CHANNELSNEWWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ ExplicitEncodingCleanUpTest Java 10[9] PRINTWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[10] STRINGGETBYTES
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[11] STRING
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[12] PROPERTIESSTORETOXML
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[13] URLDECODER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[14] URLENCODER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[15] SCANNER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[16] FORMATTER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[17] THREE
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[18] ENCODINGASSTRINGPARAMETER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[19] FILES_NEWBUFFEREDREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[1] CHARSET
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[20] FILES_NEWBUFFEREDWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[21] FILES_READALLLINES
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[2] BYTEARRAYOUTSTREAM
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[3] FILEREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[4] FILEWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[5] INPUTSTREAMREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[6] OUTPUTSTREAMWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[7] CHANNELSNEWREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[8] CHANNELSNEWWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedKeepBehavior(ExplicitEncodingPatternsKeepBehavior)[9] PRINTWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[10] STRINGGETBYTES
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[11] STRING
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[12] PROPERTIESSTORETOXML
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[13] URLDECODER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[14] URLENCODER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[15] SCANNER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[16] FORMATTER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[17] THREE
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[18] ENCODINGASSTRINGPARAMETER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[19] FILES_NEWBUFFEREDREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[1] CHARSET
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[20] FILES_NEWBUFFEREDWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[21] FILES_READALLLINES
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[2] BYTEARRAYOUTSTREAM
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[3] FILEREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[4] FILEWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[5] INPUTSTREAMREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[6] OUTPUTSTREAMWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[7] CHANNELSNEWREADER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[8] CHANNELSNEWWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingParametrizedPreferUTF8(ExplicitEncodingPatternsPreferUTF8)[9] PRINTWRITER
ExplicitEncodingCleanUpTest Java 10 ‑ testExplicitEncodingdonttouch
ExplicitEncodingCleanUpTest Java 10 ‑ testStringEncodingReplacementInsideTryCatchUnwrap
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[10] STRINGGETBYTES
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[11] STRING
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[12] PROPERTIESSTORETOXML
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[13] URLDECODER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[14] URLENCODER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[15] SCANNER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[16] FORMATTER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[17] THREE
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[18] ENCODINGASSTRINGPARAMETER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[19] FILES_READSTRING
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[1] CHARSET
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[20] FILES_WRITESTRING
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[2] BYTEARRAYOUTSTREAM
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[3] FILEREADER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[4] FILEWRITER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[5] INPUTSTREAMREADER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[6] OUTPUTSTREAMWRITER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[7] CHANNELSNEWREADER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[8] CHANNELSNEWWRITER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[9] PRINTWRITER
ExplicitEncodingCleanUpTest Java 22 ‑ testExplicitEncodingdonttouch
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[10] STRINGGETBYTES
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[11] STRING
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[12] PROPERTIESSTORETOXML
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[13] URLDECODER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[14] URLENCODER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[15] SCANNER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[16] FORMATTER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[17] THREE
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[18] ENCODINGASSTRINGPARAMETER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[1] CHARSET
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[2] BYTEARRAYOUTSTREAM
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[3] FILEREADER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[4] FILEWRITER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[5] INPUTSTREAMREADER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[6] OUTPUTSTREAMWRITER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[7] CHANNELSNEWREADER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[8] CHANNELSNEWWRITER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingParametrized(ExplicitEncodingPatterns)[9] PRINTWRITER
ExplicitEncodingCleanUpTest Java 8 ‑ testExplicitEncodingdonttouch
Expression Conversion ‑ convertCastExpression
Expression Conversion ‑ convertExpressionDispatchMethodInvocation
Expression Conversion ‑ convertExpressionDispatchSimpleName
Expression Conversion ‑ convertExpressionNull
Expression Conversion ‑ convertExpressionUnsupported
Expression Conversion ‑ convertFieldAccess
Expression Conversion ‑ convertInfixExpression
Expression Conversion ‑ convertInfixExpressionExtended
Expression Conversion ‑ convertMethodInvocation
Expression Conversion ‑ convertMethodInvocationMultipleArgs
Expression Conversion ‑ convertMethodInvocationNoReceiver
Expression Conversion ‑ convertNullMethodInvocationThrows
Expression Conversion ‑ convertNullSimpleNameThrows
Expression Conversion ‑ convertSimpleName
Expression Conversion ‑ identifierOfNonSimpleName
Expression Conversion ‑ identifierOfNull
Expression Conversion ‑ identifierOfSimpleName
Expression Type Matchers ‑ testIfAssignmentWithOperator_matches
Expression Type Matchers ‑ testIfAssignment_matches
Expression Type Matchers ‑ testIfMethodInvocationNamed_matches
Expression Type Matchers ‑ testIfMethodInvocation_matches
Expression Type Matchers ‑ testIfPostfixExpression_matches
Expression Type Matchers ‑ testIfPostfixIncrementOrDecrement_matchesIncrement
Expression Type Matchers ‑ testIfPrefixExpression_matches
Expression Type Matchers ‑ testIfPrefixIncrementOrDecrement_matchesDecrement
Expression Type Matchers ‑ testIfSimpleName_matches
Factory Methods ‑ testForEachInBlock_processesAllStatements
Factory Methods ‑ testForSingle_createsContext
Factory Methods ‑ testForStatement_createsContextWithPosition
Factory Methods ‑ testIsHandled_returnsFalseInitially
Factory Methods ‑ testOn_createsNodeMatcher
Factory Methods ‑ testProcessBlock_earlyTermination
Factory Methods ‑ testProcessBlock_returnsEmpty
Factory Methods ‑ withReferenceHolderAndSetCreatesBuilder
Factory Methods ‑ withReferenceHolderCreatesBuilder
FieldVisitorBuilder Excluding Tests ‑ testValidationRequiresBothAnnotationAndType
FieldVisitorBuilder Excluding Tests ‑ testValidationRequiresType
FieldVisitorBuilder Tests ‑ testValidationRequiresAnnotationAndType
Fluent API Chaining ‑ builderReturnsItselfForChaining
Fluent API Chaining ‑ multipleVisitorsCanBeChained
Fluent API Integration ‑ convertExpressionFluentCast
Fluent API Integration ‑ convertedInfixFluentAPI
Fluent API Integration ‑ convertedMethodInvocationFluentAPI
FluentASTVisitor ‑ rawNodeAccessible
FluentASTVisitor ‑ visitMethodInvocationReceivesWrapper
FluentASTVisitor ‑ visitMethodsAreFinal
FluentASTVisitor ‑ visitSimpleNameReceivesWrapper
Fully Qualified Type Names ‑ javaLangDoubleIsCorrect
Fully Qualified Type Names ‑ javaLangIntegerIsCorrect
Fully Qualified Type Names ‑ javaLangLongIsCorrect
Fully Qualified Type Names ‑ javaLangMathIsCorrect
Fully Qualified Type Names ‑ javaLangStringIsCorrect
Generic Node Conversion ‑ convertNodeExpression
Generic Node Conversion ‑ convertNodeNull
Generic Node Conversion ‑ convertNodeStatement
Generic Type Matchers ‑ testIfTypeMatching_withPredicate
Generic Type Matchers ‑ testIfType_matches
Getters and Setters ‑ Match patterns are correctly returned
Getters and Setters ‑ setCurrentVariableName updates the variable name
GuardExpressionParser thread-safety ‑ testConcurrentParsing
HelperVisitor Integration Tests ‑ ReferenceHolder is properly populated with found nodes
HelperVisitor Integration Tests ‑ createHolder() creates JunitHolder from Match correctly
HelperVisitor Integration Tests ‑ excluding(nodesprocessed) correctly skips already processed nodes
HintFile Severity type-safety ‑ testGetSeverityAsStringReturnsLowercase
HintFile Severity type-safety ‑ testSetSeverityEnumDirectly
HintFile Severity type-safety ‑ testSetSeverityErrorUppercase
HintFile Severity type-safety ‑ testSetSeverityHintLowercase
HintFile Severity type-safety ‑ testSetSeverityInvalidFallback
HintFile Severity type-safety ‑ testSetSeverityNullFallback
HintFile Severity type-safety ‑ testSetSeverityWarningLowercase
Import Management Tests ‑ Unused imports are removed after transformation
Import Management Tests ‑ addImports correctly adds new imports
Import Management Tests ‑ removeImports correctly removes specified imports
ImportVisitorBuilder Tests ‑ testFindRegularImports
ImportVisitorBuilder Tests ‑ testFindStaticImports
Issue #670 Security Measures Integration Tests ‑ ConcurrentHashMap - should NOT convert (concurrent collection)
Issue #670 Security Measures Integration Tests ‑ CopyOnWriteArrayList - should NOT convert (concurrent collection)
Issue #670 Security Measures Integration Tests ‑ getItems().clear() should block conversion when iterating items
Issue #670 Security Measures Integration Tests ‑ getList().remove() should block conversion
Issue #670 Security Measures Integration Tests ‑ list.removeIf() should block conversion
Issue #670 Security Measures Integration Tests ‑ list.replaceAll() on iterated collection should block conversion
Issue #670 Security Measures Integration Tests ‑ list.sort() on iterated collection should block conversion
Issue #670 Security Measures Integration Tests ‑ map.compute() on different collection allows conversion
Issue #670 Security Measures Integration Tests ‑ map.computeIfAbsent() on different collection allows conversion
Issue #670 Security Measures Integration Tests ‑ map.merge() on different collection allows conversion
Issue #670 Security Measures Integration Tests ‑ map.putIfAbsent() on different collection allows conversion
Issue #670 Security Measures Integration Tests ‑ this.items.add() should block conversion when iterating same field
Issue #670: Strict Loop Refactoring Rules ‑ Enhanced for-loop on ConcurrentHashMap values - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Indexed array loop with neighbor access (i+1) - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Indexed loop with previous element access (i-1) - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Iterator loop on CopyOnWriteArrayList with iterator.remove() - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop modifying different collection - CAN convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with field access receiver (this.list.remove) - should NOT convert (BUG)
Issue #670: Strict Loop Refactoring Rules ‑ Loop with getter method receiver (getList().add) - should NOT convert (CRASHES)
Issue #670: Strict Loop Refactoring Rules ‑ Loop with index arithmetic (i*2) - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with index arithmetic AND collection modification - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with index in conditional logic (i%2==0) - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with list.add() - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with list.clear() - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with list.remove() - should NOT convert
Issue #670: Strict Loop Refactoring Rules ‑ Loop with map.put() on iterated map - should NOT convert (BUG)
Issue #670: Strict Loop Refactoring Rules ‑ Simple indexed array loop (only array[i]) - CAN convert to IntStream
Issue #670: Strict Loop Refactoring Rules ‑ Simple iterator loop on CopyOnWriteArrayList - CAN convert
Iterator Loop to Stream Conversion Tests ‑ Break statement prevents conversion - not yet supported
Iterator Loop to Stream Conversion Tests ‑ External state modification prevents conversion - side effect
Iterator Loop to Stream Conversion Tests ‑ Iterator collect to List: stream().collect(Collectors.toList())
Iterator Loop to Stream Conversion Tests ‑ Iterator collect to Set: stream().collect(Collectors.toSet())
Iterator Loop to Stream Conversion Tests ‑ Iterator filter+collect: stream().filter(predicate).collect(toList())
Iterator Loop to Stream Conversion Tests ‑ Iterator filter+map+collect: stream().filter().map().collect()
Iterator Loop to Stream Conversion Tests ‑ Iterator map with method reference: stream().map(String::toUpperCase)
Iterator Loop to Stream Conversion Tests ‑ Iterator map+collect: stream().map(transform).collect(toList())
Iterator Loop to Stream Conversion Tests ‑ Iterator sum reduction: stream().mapToInt(i -> i).sum()
Iterator Loop to Stream Conversion Tests ‑ Iterator.remove() prevents conversion - unsafe pattern
Iterator Loop to Stream Conversion Tests ‑ Labeled continue prevents conversion - unsafe pattern
Iterator Loop to Stream Conversion Tests ‑ Multiple next() calls prevent conversion - unsafe pattern
Iterator Loop to Stream Conversion Tests ‑ for-loop-iterator forEach: list.stream().forEach(item -> println(item))
Iterator Loop to Stream Conversion Tests ‑ forEach with block lambda for multiple statements
Iterator Loop to Stream Conversion Tests ‑ while-iterator forEach: list.stream().forEach(item -> println(item))
Lambda Capture and Scope Tests ‑ Loop body uses final local variable
Lambda Capture and Scope Tests ‑ Loop body uses instance field
Lambda Capture and Scope Tests ‑ Loop body uses method parameter
Lambda Capture and Scope Tests ‑ Loop uses effectively final variable
List Operations ‑ testGetPrecedingStatements_emptyForFirst
List Operations ‑ testGetPrecedingStatements_returnsBeforeCurrent
List Operations ‑ testGetRemainingStatements_emptyForLast
List Operations ‑ testGetRemainingStatements_returnsAfterCurrent
Loop Collect Pattern Refactoring Tests ‑ Array map+collect: Arrays.stream(arr).map(f).toList()
Loop Collect Pattern Refactoring Tests ‑ Array source collect: Arrays.stream(array).toList()
Loop Collect Pattern Refactoring Tests ‑ Break statement prevents collect conversion
Loop Collect Pattern Refactoring Tests ‑ Complex filter+map: multiple conditions and transformations
Loop Collect Pattern Refactoring Tests ‑ Filter+collect: stream().filter(predicate).toList()
Loop Collect Pattern Refactoring Tests ‑ Filter+map+collect chain: optimal ordering for performance
Loop Collect Pattern Refactoring Tests ‑ Identity collect to List: stream().collect(Collectors.toList())
Loop Collect Pattern Refactoring Tests ‑ Identity collect to Set: stream().collect(Collectors.toSet())
Loop Collect Pattern Refactoring Tests ‑ Intermediate read transformed with forEach
Loop Collect Pattern Refactoring Tests ‑ Map with complex expression: stream().map(x -> x * 2)
Loop Collect Pattern Refactoring Tests ‑ Map with lambda (method reference candidate): stream().map(item -> item.toUpperCase())
Loop Collect Pattern Refactoring Tests ‑ Map+collect: stream().map(transform).collect(Collectors.toList())
Loop Collect Pattern Refactoring Tests ‑ Multiple collect targets converted to forEach
Loop Collect Pattern Refactoring Tests ‑ Null filter: filter(item -> (item != null))
Loop Collect Pattern Refactoring Tests ‑ Side effects prevent collect conversion
Loop Refactoring Edge Cases and Boundary Conditions ‑ Chained map: map(x -> x.m1().m2())
Loop Refactoring Edge Cases and Boundary Conditions ‑ Empty collection: stream handles empty input correctly
Loop Refactoring Edge Cases and Boundary Conditions ‑ Method chaining: element.method1().method2()
Loop Refactoring Edge Cases and Boundary Conditions ‑ Name conflict: avoid variable name collisions
Loop Refactoring Edge Cases and Boundary Conditions ‑ Nested generics: List<List<T>> type inference
Loop Refactoring Edge Cases and Boundary Conditions ‑ No-op loop: empty body still transforms
Loop Refactoring Edge Cases and Boundary Conditions ‑ Null check filter: filter(item -> item != null)
Loop Refactoring Edge Cases and Boundary Conditions ‑ Null-safe operation: filter before map
Loop Refactoring Edge Cases and Boundary Conditions ‑ Performance: use direct forEach when possible
Loop Refactoring Edge Cases and Boundary Conditions ‑ Primitive array: use IntStream for int[] to avoid boxing
Loop Refactoring Edge Cases and Boundary Conditions ‑ Single element: consistent transformation
Loop Refactoring Edge Cases and Boundary Conditions ‑ Unused element: lambda with unused parameter
Loop Refactoring Edge Cases and Boundary Conditions ‑ Variable shadowing: lambda preserves scope
Loop Refactoring Edge Cases and Boundary Conditions ‑ Wildcard generics: List<? extends T> handling
Loop Target Format Selection Tests ‑ LoopTargetFormat.fromId() parses correctly
Loop Target Format Selection Tests ‑ LoopTargetFormat.getId() returns correct IDs
Loop Target Format Selection Tests ‑ Target format FOR_LOOP: no conversion yet (not implemented)
Loop Target Format Selection Tests ‑ Target format STREAM: for → stream (default behavior)
Loop Target Format Selection Tests ‑ Target format WHILE_LOOP: no conversion yet (not implemented)
Match Pattern Null Safety Tests ‑ anyMatch checking for null elements
Match Pattern Null Safety Tests ‑ noneMatch with method call - NPE risk documented
Match.Binding sealed interface ‑ testHasBindingFalse
Match.Binding sealed interface ‑ testHasBindingTrue
Match.Binding sealed interface ‑ testTypedBindingsNodeList
Match.Binding sealed interface ‑ testTypedBindingsSingleNode
MatchScore record ‑ testEvidenceIsImmutable
MatchScore record ‑ testInvalidScoreThrows
MatchScore record ‑ testNullParametersThrow
MatchScore record ‑ testScoreBoundaries
MatchScore record ‑ testScoreWithEvidence
MatchScore record ‑ testValidScore
MatchSeverity enum ‑ testAllValuesExist
MatchSeverity enum ‑ testSeverityOrdering
Matcher Integration ‑ testMatcher_returnsNodeMatcher
Matcher Integration ‑ testNextIsWithPredicate_returnsTrueWhenBothMatch
Matcher Integration ‑ testNextIs_returnsTrueForMatchingType
Matcher Integration ‑ testNextMatches_returnsFalseWhenNoMatch
Matcher Integration ‑ testNextMatches_returnsTrueWhenMatches
Math Constants ‑ JAVA_LANG_MATH delegates to LibStandardNames
Math Constants ‑ MAX_METHOD_NAME delegates to LibStandardNames
Math Constants ‑ MIN_METHOD_NAME delegates to LibStandardNames
Math Method Constants ‑ methodConcatIsConcat
Math Method Constants ‑ methodMaxIsMax
Math Method Constants ‑ methodMinIsMin
Math Method Constants ‑ methodSumIsSum
Method Invocation on Loop Variable Tests ‑ Explicit null check with continue converts to filter
Method Invocation on Loop Variable Tests ‑ Method call on loop variable - same NPE behavior
Method Reference Constants ‑ DOUBLE_SUM is correct
Method Reference Constants ‑ INTEGER_MAX is correct
Method Reference Constants ‑ INTEGER_MIN is correct
Method Reference Constants ‑ INTEGER_SUM is correct
Method Reference Constants ‑ LONG_SUM is correct
Method Reference Constants ‑ STRING_CONCAT is correct
MethodCallVisitorBuilder Tests ‑ testCollectMethodCalls
MethodCallVisitorBuilder Tests ‑ testFindMultipleMethodCalls
MethodCallVisitorBuilder Tests ‑ testFindSingleMethodCall
Navigation Methods ‑ testGetNextStatement_returnsEmptyForLast
Navigation Methods ‑ testGetNextStatement_returnsNext
Navigation Methods ‑ testGetPreviousStatement_returnsEmptyForFirst
Navigation Methods ‑ testGetPreviousStatement_returnsPrevious
Navigation Methods ‑ testGetStatementAt_negativeOffset
Navigation Methods ‑ testGetStatementAt_outOfBounds
Navigation Methods ‑ testGetStatementAt_positiveOffset
Negative Tests - Should NOT Convert ‑ Assignment to external variable converts to filter/forEachOrdered
Negative Tests - Should NOT Convert ‑ Conditional return null in loop - should NOT convert
Nested Loop Tests ‑ Enhanced-for with nested do-while loop - should NOT convert
Nested Loop Tests ‑ Enhanced-for with nested traditional for loop - should NOT convert
Nested Loop Tests ‑ Enhanced-for with nested while loop - should NOT convert
Nested Loop Tests ‑ Inner loop in nested context can be converted
Nested Loop Tests ‑ Loop over filtered stream result - should convert
Nested Loop Tests ‑ Nested for-each loops should convert inner loop only
Nested Loop Tests ‑ Nested loops with outer variable capture - should NOT convert
NullStatus enum ‑ testAllValuesExist
NullabilityGuard ‑ testAnalyzeNullExpression
NullabilityGuard ‑ testCustomWhitelist
NullabilityGuard ‑ testWhitelistLoaded
NullabilityResult record ‑ testResultFields
NullabilityResult record ‑ testUnknownConstant
OperationType Enum ‑ All operation types are defined
OperationType.getMethodName() ‑ Returns 'allMatch' for ALLMATCH operation
OperationType.getMethodName() ‑ Returns 'anyMatch' for ANYMATCH operation
OperationType.getMethodName() ‑ Returns 'filter' for FILTER operation
OperationType.getMethodName() ‑ Returns 'forEachOrdered' for FOREACH operation
OperationType.getMethodName() ‑ Returns 'map' for MAP operation
OperationType.getMethodName() ‑ Returns 'noneMatch' for NONEMATCH operation
OperationType.getMethodName() ‑ Returns 'reduce' for REDUCE operation
Operator Conversion ‑ convertConditionalAnd
Operator Conversion ‑ convertConditionalOr
Operator Conversion ‑ convertDivide
Operator Conversion ‑ convertEquals
Operator Conversion ‑ convertGreater
Operator Conversion ‑ convertLess
Operator Conversion ‑ convertMinus
Operator Conversion ‑ convertNotEquals
Operator Conversion ‑ convertNullOperatorThrows
Operator Conversion ‑ convertPlus
Operator Conversion ‑ convertRemainder
Operator Conversion ‑ convertTimes
Pattern Transformation Tests (no OSGi) ‑ testAllMatch
Pattern Transformation Tests (no OSGi) ‑ testAnyMatch
Pattern Transformation Tests (no OSGi) ‑ testArraySourceTransformation
Pattern Transformation Tests (no OSGi) ‑ testBreakNotConvertible
Pattern Transformation Tests (no OSGi) ‑ testCollectToList
Pattern Transformation Tests (no OSGi) ‑ testCollectToSet
Pattern Transformation Tests (no OSGi) ‑ testFilterMapForEach
Pattern Transformation Tests (no OSGi) ‑ testFilterThenCollect
Pattern Transformation Tests (no OSGi) ‑ testFilterViaContinue
Pattern Transformation Tests (no OSGi) ‑ testFilterViaIfGuard
Pattern Transformation Tests (no OSGi) ‑ testMapThenCollect
Pattern Transformation Tests (no OSGi) ‑ testMapViaVariableDeclaration
Pattern Transformation Tests (no OSGi) ‑ testNoneMatch
Pattern Transformation Tests (no OSGi) ‑ testOrderedForEach
Pattern Transformation Tests (no OSGi) ‑ testReduceCount
Pattern Transformation Tests (no OSGi) ‑ testReduceProduct
Pattern Transformation Tests (no OSGi) ‑ testReduceSum
Pattern Transformation Tests (no OSGi) ‑ testReturnNotConvertible
Pattern Transformation Tests (no OSGi) ‑ testSimpleForEach
Placeholder Preservation Tests ‑ $value placeholder is preserved in SingleMemberAnnotation transformation
Placeholder Preservation Tests ‑ MarkerAnnotation without placeholder is correctly transformed
Placeholder Preservation Tests ‑ NormalAnnotation with value attribute is correctly transformed
Position Queries ‑ testGetRemainingCount_returnsCorrectCount
Position Queries ‑ testHasNext_returnsFalseForLast
Position Queries ‑ testHasNext_returnsTrueWhenMore
Position Queries ‑ testHasPrevious_returnsFalseForFirst
Position Queries ‑ testHasPrevious_returnsTrueWhenPrevious
Position Queries ‑ testIsFirst_returnsFalseForNonFirst
Position Queries ‑ testIsFirst_returnsTrueForFirst
Position Queries ‑ testIsLast_returnsTrueForLast
Position Queries ‑ testIsMiddle_returnsFalseForFirst
Position Queries ‑ testIsMiddle_returnsTrueForMiddle
Position Queries ‑ testIsOnly_returnsTrueForSingle
Processing Control Tests ‑ testEarlyTermination
Processing Control Tests ‑ testExcludingProcessedNodes
Qualified Type Validation Tests ‑ Pattern without qualified type is handled correctly
Qualified Type Validation Tests ‑ validateQualifiedType correctly validates annotation types
Reduce Operation Null Safety Tests ‑ Integer sum with unboxing - same NPE behavior
Reduce Operation Null Safety Tests ‑ Math.max reducer pattern
ReducerType Enum ‑ All reducer types are defined
ReferenceHolder Correctness Tests ‑ testReferenceHolder_isCorrectlyPopulated_andAccessibleAfterProcessing
ReferenceHolder Correctness Tests ‑ testReferenceHolder_multipleNodes_allAccessible
ReferenceHolder Correctness Tests ‑ testReferenceHolder_returnsNullForNonExistentKey
ReferenceHolder Integration Tests ‑ testReferenceHolderDataCollection
ReportFilter ‑ testCombinedFilters
ReportFilter ‑ testDefaultFilterPassesAll
ReportFilter ‑ testExcludeNonNull
ReportFilter ‑ testMinTrivialChange
ReportFilter ‑ testMinTrivialChangeValidation
ReportFilter ‑ testSeveritiesValidation
ReportFilter ‑ testSeverityFilter
ScoredJsonReporter ‑ testEmptyJson
ScoredJsonReporter ‑ testGenerateJson
ScoredJsonReporter ‑ testGenerateJsonWithoutReplacement
ScoredJsonReporter ‑ testNullEntriesThrows
ScoredMarkdownReporter ‑ testEmptyReport
ScoredMarkdownReporter ‑ testGenerateReport
ScoredMarkdownReporter ‑ testNullEntriesThrows
ScoredMatchEntry record ‑ testRecordFields
State checks ‑ Abort result has shouldAbort() == true
State checks ‑ Default skip index is -1
State checks ‑ Non-abort result has shouldAbort() == false
Statement Conversion ‑ convertEnhancedFor
Statement Conversion ‑ convertFor
Statement Conversion ‑ convertIf
Statement Conversion ‑ convertIfElse
Statement Conversion ‑ convertStatementDispatchEnhancedFor
Statement Conversion ‑ convertStatementNull
Statement Conversion ‑ convertStatementUnsupported
Statement Conversion ‑ convertWhile
Statement Type Matchers ‑ testIfBlock_matches
Statement Type Matchers ‑ testIfBreakStatement_matches
Statement Type Matchers ‑ testIfContinueStatement_matches
Statement Type Matchers ‑ testIfExpressionStatement_matches
Statement Type Matchers ‑ testIfIfStatementWithElse_matches
Statement Type Matchers ‑ testIfIfStatementWithoutElse_matches
Statement Type Matchers ‑ testIfIfStatement_matches
Statement Type Matchers ‑ testIfReturnStatement_matches
Statement Type Matchers ‑ testIfThrowStatement_matches
Statement Type Matchers ‑ testIfVariableDeclarationMatching_withPredicate
Statement Type Matchers ‑ testIfVariableDeclaration_matches
Static Utility Methods ‑ testMatchAll_processesAll
Stream API Method Constants ‑ methodAllMatchIsAllMatch
Stream API Method Constants ‑ methodAnyMatchIsAnyMatch
Stream API Method Constants ‑ methodFilterIsFilter
Stream API Method Constants ‑ methodForEachOrderedIsForEachOrdered
Stream API Method Constants ‑ methodForeachIsForEach
Stream API Method Constants ‑ methodMapIsMap
Stream API Method Constants ‑ methodNoneMatchIsNoneMatch
Stream API Method Constants ‑ methodReduceIsReduce
Stream API Method Constants ‑ methodStreamIsStream
Stream Method Constants ‑ ALL_MATCH_METHOD delegates to LibStandardNames
Stream Method Constants ‑ ANY_MATCH_METHOD delegates to LibStandardNames
Stream Method Constants ‑ FILTER_METHOD delegates to LibStandardNames
Stream Method Constants ‑ FOR_EACH_METHOD delegates to LibStandardNames
Stream Method Constants ‑ FOR_EACH_ORDERED_METHOD delegates to LibStandardNames
Stream Method Constants ‑ MAP_METHOD delegates to LibStandardNames
Stream Method Constants ‑ NONE_MATCH_METHOD delegates to LibStandardNames
Stream Method Constants ‑ REDUCE_METHOD delegates to LibStandardNames
Stream Method Constants ‑ STREAM_METHOD delegates to LibStandardNames
String Concatenation Reducer Tests ‑ String concat with @NotNull accumulator uses String::concat
String Concatenation Reducer Tests ‑ String concat without @NotNull uses null-safe lambda
Terminal Operations ‑ testOrElseDo_executesWhenNotHandled
Terminal Operations ‑ testOrElseGet_returnsEmptyWhenHandled
Terminal Operations ‑ testOrElseGet_returnsOptionalWhenNotHandled
Terminal Operations ‑ testOrElse_doesNotExecuteWhenHandled
Terminal Operations ‑ testOrElse_executesWhenNotHandled
TransformationRule.findMatchingAlternative returns Optional ‑ testNoAlternativesMatch
TransformationRule.findMatchingAlternative returns Optional ‑ testOtherwiseAlternativeMatches
Tree Diagram ‑ testMultipleRoots
Tree Diagram ‑ testNestedLoops
Tree Diagram ‑ testNodeWithLoopModel
Tree Diagram ‑ testNullTree
Tree Diagram ‑ testSingleRoot
Type Constants ‑ JAVA_LANG_STRING delegates to LibStandardNames
TypeChangeDetector Tests ‑ testDetectsCharsetTypeChange
TypeChangeDetector Tests ‑ testDetectsIso88591
TypeChangeDetector Tests ‑ testDetectsUtf16
TypeChangeDetector Tests ‑ testNoDetectionForNoStringLiteral
TypeChangeDetector Tests ‑ testNoDetectionForNonCharsetString
TypeChangeDetector Tests ‑ testNoDetectionForNonCharsetViaPublicApi
TypeChangeDetector Tests ‑ testNoDetectionForNullInputs
TypeChangeDetector Tests ‑ testNoDetectionWithoutStandardCharsets
Unresolved Binding Fallback Tests (JUnit-like @Rule fields) ‑ testExternalResourceDoesNotMatchErrorCollector
Unresolved Binding Fallback Tests (JUnit-like @Rule fields) ‑ testFindRuleErrorCollectorFieldFallback
Unresolved Binding Fallback Tests (JUnit-like @Rule fields) ‑ testFindRuleTemporaryFolderFieldFallback
Unresolved Binding Fallback Tests (JUnit-like @Rule fields) ‑ testTimeoutDoesNotMatchErrorCollector
Utility Methods ‑ testGetAssignment_returnsEmpty
Utility Methods ‑ testGetAssignment_returnsOptionalWithAssignment
Utility Methods ‑ testGetExpression_returnsEmpty
Utility Methods ‑ testGetExpression_returnsOptionalWithExpression
Utility Methods ‑ testIsAssignmentStatement_returnFalse
Utility Methods ‑ testIsAssignmentStatement_returnTrue
Utility Methods ‑ testIsControlFlowStatement_breakTrue
Utility Methods ‑ testIsControlFlowStatement_continueTrue
Utility Methods ‑ testIsControlFlowStatement_returnFalse
Utility Methods ‑ testIsControlFlowStatement_returnTrue
Utility Methods ‑ testIsControlFlowStatement_throwTrue
abort() factory method ‑ Creates abort result
abort() factory method ‑ Multiple abort calls return equivalent results
collect() Tests ‑ testCollect_returnsAllFoundNodes
createAccumulatorExpression() ‑ Creates Double::sum for SUM type with double
createAccumulatorExpression() ‑ Creates Integer::sum for SUM type with int
createAccumulatorExpression() ‑ Creates String::concat for STRING_CONCAT when null-safe
createAccumulatorExpression() ‑ Creates binary lambda for PRODUCT type
createAccumulatorExpression() ‑ Creates binary lambda for STRING_CONCAT when not null-safe
createAccumulatorExpression() ‑ Creates counting lambda for INCREMENT type
createNegatedExpression() ‑ negatesInfixExpressionWithParentheses
createNegatedExpression() ‑ negatesSimpleNameWithoutParentheses
createNegatedExpression() ‑ nullAstThrowsException
createNegatedExpression() ‑ nullConditionThrowsException
forAnnotation() Tests ‑ testForAnnotation_andImports_findsImports
forAnnotation() Tests ‑ testForAnnotation_findsMarkerAnnotation_populatesReferenceHolder
forAnnotation() Tests ‑ testForAnnotation_skipsProcessedNodes
forField() Tests ‑ testForField_withAnnotation_findsFieldDeclaration
forImport() Tests ‑ testForImport_findsImportDeclaration_populatesReferenceHolder
forMethodCalls() Tests ‑ testForMethodCalls_findsMethodInvocation_populatesReferenceHolder
forMethodCalls() Tests ‑ testForMethodCalls_withImports_findsAllNodes
forSingleStatement factory ‑ Creates context for single statement
forSingleStatement factory ‑ Creates context with match patterns
generateUniqueVariableName() ‑ Appends number if base name is used
generateUniqueVariableName() ‑ Increments number until unique
generateUniqueVariableName() ‑ Returns base name if not used
isIdentityMapping() ‑ infixExpressionIsNotIdentity
isIdentityMapping() ‑ nullVarNameReturnsFalse
isIdentityMapping() ‑ simpleNameMatchingVarNameIsIdentity
isIdentityMapping() ‑ simpleNameNotMatchingVarNameIsNotIdentity
isNegatedExpression() ‑ prefixExpressionWithMinusIsNotNegated
isNegatedExpression() ‑ prefixExpressionWithNotIsNegated
isNegatedExpression() ‑ simpleNameIsNotNegated
isSafeSideEffect() ‑ Assignment to current variable is unsafe
isSafeSideEffect() ‑ Assignment to different variable is unsafe
isSafeSideEffect() ‑ Method invocation is safe
isSafeSideEffect() ‑ null statement is unsafe
matchNode() ‑ matchNodeFindsCorrectType
matchNode() ‑ matchNodeHandledStatePreventsDuplicate
matchNode() ‑ matchNodeWithPredicateFiltersCorrectly
needsParentheses() ‑ infixExpressionNeedsParentheses
needsParentheses() ‑ nullInputThrowsException
needsParentheses() ‑ simpleNameDoesNotNeedParentheses
onAssignment() ‑ findsAssignments
onEachStatement() ‑ onEachStatementProcessesAllStatements
onEnhancedForStatement() ‑ findsEnhancedForLoops
onEnhancedForStatement() ‑ providesAccessToLoopVariable
onIfStatement() ‑ findsIfStatements
onMethodDeclaration() ‑ findsAllMethodDeclarations
onMethodInvocation() ‑ filtersByMethodName
onMethodInvocation() ‑ findsAllMethodInvocations
onReturnStatement() ‑ findsReturnStatements
onTypeDeclaration() ‑ findsTypeDeclarations
onVariableDeclarationFragment() ‑ findsVariableDeclarations
org.eclipse.jdt.ui.tests.quickfix.EncodingHintFileTest ‑ testEncodingMetadata
org.eclipse.jdt.ui.tests.quickfix.EncodingHintFileTest ‑ testEncodingRulesCoverAllCharsets
org.eclipse.jdt.ui.tests.quickfix.EncodingHintFileTest ‑ testEncodingRulesHaveGuards
org.eclipse.jdt.ui.tests.quickfix.EncodingHintFileTest ‑ testEncodingRulesHaveImportDirectives
org.eclipse.jdt.ui.tests.quickfix.EncodingHintFileTest ‑ testLoadEncodingLibrary
org.eclipse.jdt.ui.tests.quickfix.EncodingHintFileTest ‑ testTierClassification
org.eclipse.jdt.ui.tests.quickfix.JUnit3MigrationHintFileTest ‑ testAllRulesAreMethodDeclarations
org.eclipse.jdt.ui.tests.quickfix.JUnit3MigrationHintFileTest ‑ testAllRulesHaveGuards
org.eclipse.jdt.ui.tests.quickfix.JUnit3MigrationHintFileTest ‑ testJUnit3MigrationMetadata
org.eclipse.jdt.ui.tests.quickfix.JUnit3MigrationHintFileTest ‑ testJUnit3MigrationRuleCount
org.eclipse.jdt.ui.tests.quickfix.JUnit3MigrationHintFileTest ‑ testLoadJUnit3MigrationLibrary
org.eclipse.jdt.ui.tests.quickfix.JUnit5HintFileTest ‑ testAllRulesHaveImportDirectives
org.eclipse.jdt.ui.tests.quickfix.JUnit5HintFileTest ‑ testJUnit5CoversMajorAssertionMethods
org.eclipse.jdt.ui.tests.quickfix.JUnit5HintFileTest ‑ testJUnit5Metadata
org.eclipse.jdt.ui.tests.quickfix.JUnit5HintFileTest ‑ testJUnit5RulesHaveImportDirectives
org.eclipse.jdt.ui.tests.quickfix.JUnit5HintFileTest ‑ testLoadJUnit5Library
org.eclipse.jdt.ui.tests.quickfix.Java22.HintOnlyCleanUpTest ‑ testDisabledNoChange
org.eclipse.jdt.ui.tests.quickfix.Java22.HintOnlyCleanUpTest ‑ testMissingHashCodeNoCodeChange
org.eclipse.jdt.ui.tests.quickfix.Java22.HintOnlyCleanUpTest ‑ testObsoleteCollectionNoCodeChange
org.eclipse.jdt.ui.tests.quickfix.Java22.HintOnlyCleanUpTest ‑ testOverridableCallInConstructorNoCodeChange
org.eclipse.jdt.ui.tests.quickfix.Java22.HintOnlyCleanUpTest ‑ testPrintStackTraceNoCodeChange
org.eclipse.jdt.ui.tests.quickfix.Java22.HintOnlyCleanUpTest ‑ testSystemOutNoCodeChange
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testBasicIfElseToEnumSwitch
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testNoTransformConstantsUsedElsewhere
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testNoTransformSwitchOnLocalVariable
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testNoTransformSwitchWithSingleConstant
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testNoTransformWithoutCommonUnderscorePrefix
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testNoTransformationWhenDisabled
org.eclipse.jdt.ui.tests.quickfix.Java22.IntToEnumCleanUpTest ‑ testSwitchIntToEnumBasic
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftDisabled
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftInRangeNoChange
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftOutOfRangeParameterized(ShiftOutOfRangePatterns)[1] INT_LEFT_SHIFT_32
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftOutOfRangeParameterized(ShiftOutOfRangePatterns)[2] INT_RIGHT_SHIFT_33
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftOutOfRangeParameterized(ShiftOutOfRangePatterns)[3] INT_UNSIGNED_RIGHT_SHIFT_64
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftOutOfRangeParameterized(ShiftOutOfRangePatterns)[4] LONG_LEFT_SHIFT_64
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftOutOfRangeParameterized(ShiftOutOfRangePatterns)[5] LONG_RIGHT_SHIFT_65
org.eclipse.jdt.ui.tests.quickfix.Java22.ShiftOutOfRangeCleanUpTest ‑ testShiftOutOfRangeParameterized(ShiftOutOfRangePatterns)[6] INT_NEGATIVE_SHIFT
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testBooleanEqualsFalse
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testBooleanEqualsTrue
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testCollectionSizeEqualsZero
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testCollectionSizeGreaterThanZero
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testEmptyStringPrefixSimple
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testEmptyStringPrefixWithBoolean
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testEmptyStringPrefixWithObject
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testEmptyStringSuffixSimple
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testEmptyStringSuffixWithObject
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testMultipleTransformations
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testNoChangeForRegularConcatenation
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testNoChangeWhenAlreadyClean
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testNoChangeWhenDisabled
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testNullCheckTernaryToRequireNonNullElse
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testStringBuilderSingleAppend
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testStringEqualsEmptyToIsEmpty
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testStringFormatSimplification
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testStringLengthCheckToIsEmpty
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testTernaryFalseTrue
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testTernaryTrueFalse
org.eclipse.jdt.ui.tests.quickfix.Java22.StringSimplificationCleanUpTest ‑ testToStringEqualsToObjectsEquals
org.eclipse.jdt.ui.tests.quickfix.Java22.ThreadingCleanUpTest ‑ testInlineThreadCreationRunToStart
org.eclipse.jdt.ui.tests.quickfix.Java22.ThreadingCleanUpTest ‑ testNoChangeForCustomRunMethod
org.eclipse.jdt.ui.tests.quickfix.Java22.ThreadingCleanUpTest ‑ testNoChangeForRunnableRun

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

2779 tests found (test 805 to 1529)

There are 2779 tests, see "Raw output" for the list of tests 805 to 1529.
Raw output
org.eclipse.jdt.ui.tests.quickfix.Java22.ThreadingCleanUpTest ‑ testNoChangeWhenAlreadyCorrect
org.eclipse.jdt.ui.tests.quickfix.Java22.ThreadingCleanUpTest ‑ testNoChangeWhenDisabled
org.eclipse.jdt.ui.tests.quickfix.Java22.ThreadingCleanUpTest ‑ testThreadRunToStart
org.eclipse.jdt.ui.tests.quickfix.Java22.ThreadingCleanUpTest ‑ testThreadRunToStartOnField
org.eclipse.jdt.ui.tests.quickfix.Java22.WrongStringComparisonCleanUpTest ‑ testDisabled
org.eclipse.jdt.ui.tests.quickfix.Java22.WrongStringComparisonCleanUpTest ‑ testProperEqualsNoChange
org.eclipse.jdt.ui.tests.quickfix.Java22.WrongStringComparisonCleanUpTest ‑ testWrongStringComparisonParameterized(WrongStringComparisonPatterns)[1] EQUALS_LITERAL_ON_RIGHT
org.eclipse.jdt.ui.tests.quickfix.Java22.WrongStringComparisonCleanUpTest ‑ testWrongStringComparisonParameterized(WrongStringComparisonPatterns)[2] EQUALS_LITERAL_ON_LEFT
org.eclipse.jdt.ui.tests.quickfix.Java22.WrongStringComparisonCleanUpTest ‑ testWrongStringComparisonParameterized(WrongStringComparisonPatterns)[3] NOT_EQUALS_LITERAL_ON_RIGHT
org.eclipse.jdt.ui.tests.quickfix.Java22.WrongStringComparisonCleanUpTest ‑ testWrongStringComparisonParameterized(WrongStringComparisonPatterns)[4] NOT_EQUALS_LITERAL_ON_LEFT
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertFalse_with_equality_check
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertSame_for_object_identity
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertTrue_with_equality_check
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertTrue_with_equals_call
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertTrue_with_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertTrue_with_not_null_check
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertTrue_with_null_check
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ optimizes_assertions_with_message_parameter
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ swaps_assertArrayEquals_parameters
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ swaps_assertArrayEquals_with_getBytes
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ swaps_assertEquals_with_constant_field
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ swaps_assertIterableEquals_parameters
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ swaps_assertLinesMatch_parameters
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ swaps_assertNotSame_parameters
org.eclipse.jdt.ui.tests.quickfix.Java8.AssertOptimizationTest ‑ swaps_assertSame_parameters
org.eclipse.jdt.ui.tests.quickfix.Java8.AssumeOptimizationTest ‑ does_not_optimize_assumeTrue_without_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.AssumeOptimizationTest ‑ optimizes_assumeFalse_with_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.AssumeOptimizationTest ‑ optimizes_assumeFalse_with_negation_and_message_supplier
org.eclipse.jdt.ui.tests.quickfix.Java8.AssumeOptimizationTest ‑ optimizes_assumeTrue_with_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.AssumeOptimizationTest ‑ optimizes_assumeTrue_with_negation_and_message
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnit3CleanupParametrized(JUnit3CleanupCases)[1] MinimalCase
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnit3CleanupParametrized(JUnit3CleanupCases)[2] SetUpTearDownCase
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnit3CleanupParametrized(JUnit3CleanupCases)[3] AssertionsCase
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupParametrized(JUnitCleanupCases)[1] RuleAnonymousExternalResource
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupParametrized(JUnitCleanupCases)[2] RuleNestedExternalResource
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupSelectedCase(JUnitCleanupCases)[1] RuleAnonymousExternalResource
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupSelectedCase(JUnitCleanupCases)[2] RuleNestedExternalResource
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupSingleFile
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupSingleFileStatic
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupThreeFiles
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupTwoFiles
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupTwoFilesb
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupdonttouch(NOJUnitCleanupCases)[1] NOCase
org.eclipse.jdt.ui.tests.quickfix.Java8.JUnitMigrationCleanUpTest ‑ testJUnitCleanupdonttouch(NOJUnitCleanupCases)[2] UnrelatedCodeCase
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ detects_lost_tests_with_inherited_test_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_class_without_test_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_helper_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_methods_with_after_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_methods_with_before_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_methods_with_ignore_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_methods_with_parameters
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_non_public_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ does_not_modify_non_void_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ finds_and_fixes_lost_test_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ handles_multiple_lost_tests_in_one_class
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ uses_junit4_test_annotation_when_junit4_imported
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ uses_junit4_test_annotation_when_wildcard_import_present
org.eclipse.jdt.ui.tests.quickfix.Java8.LostTestFinderTest ‑ works_with_junit4_before_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertOptimizationTest ‑ handles_assertEquals_with_message_parameter_order
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertOptimizationTest ‑ handles_assertTrue_negation_with_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertOptimizationTest ‑ handles_multiple_assertions_in_one_method
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertOptimizationTest ‑ handles_wildcard_static_imports
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertOptimizationTest ‑ migrates_assertEquals_preserving_parameter_order
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertOptimizationTest ‑ migrates_assertFalse_preserving_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertOptimizationTest ‑ migrates_assertTrue_preserving_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_assertArrayEquals
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_assertEquals_with_delta_for_floating_point
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_assertEquals_with_message_parameter_order
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_assertEquals_without_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_assertNull_and_assertNotNull
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_assertSame_and_assertNotSame
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_assertTrue_and_assertFalse
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_fail_with_and_without_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_junit4_assertions_to_junit5(AssertionCases)[1] BasicAssertions
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_static_import_explicit
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssertionsTest ‑ migrates_static_import_wildcard
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumeOptimizationTest ‑ handles_multiple_assumptions_with_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumeOptimizationTest ‑ optimizes_assumeFalse_with_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumeOptimizationTest ‑ optimizes_assumeFalse_with_negation_and_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumeOptimizationTest ‑ optimizes_assumeTrue_with_negation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumeOptimizationTest ‑ optimizes_assumeTrue_with_negation_and_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumptionsTest ‑ migrates_assumeFalse_with_and_without_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumptionsTest ‑ migrates_assumeNotNull
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumptionsTest ‑ migrates_assumeThat_with_hamcrest
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumptionsTest ‑ migrates_assumeTrue_with_and_without_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationAssumptionsTest ‑ migrates_combined_assumptions_in_test
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCategoryTest ‑ migrates_category_on_both_class_and_method
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCategoryTest ‑ migrates_mixed_categories_and_tests
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCategoryTest ‑ migrates_multiple_categories
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCategoryTest ‑ migrates_single_category_on_class
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCategoryTest ‑ migrates_single_category_on_method
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCombinationsTest ‑ migrates_full_test_class_with_all_features
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCombinationsTest ‑ migrates_full_test_class_with_rules_and_lifecycle
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCombinationsTest ‑ migrates_suite_with_assertions_and_lifecycle
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCombinationsTest ‑ migrates_test_with_multiple_rules
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationCombinationsTest ‑ migrates_test_with_temporaryFolder_and_testName
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ handles_combined_test_expected_and_timeout
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ handles_ignore_with_value_attribute
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ handles_mixed_junit4_and_junit3_patterns
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ handles_multiple_assertions_in_one_method
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ handles_test_with_empty_body
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ handles_wildcard_static_imports
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationEdgeCasesTest ‑ preserves_comments_during_annotation_migration
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationExceptionsTest ‑ migrates_expectedException_rule_basic
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationExceptionsTest ‑ migrates_expectedException_rule_with_cause
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationExceptionsTest ‑ migrates_expectedException_rule_with_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationExceptionsTest ‑ migrates_expectedException_rule_with_message_and_cause
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationExceptionsTest ‑ migrates_test_expected_to_assertThrows
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationExceptionsTest ‑ migrates_test_expected_with_method_call
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationFixMethodOrderTest ‑ migrates_JVM_to_Random
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationFixMethodOrderTest ‑ migrates_NAME_ASCENDING_to_MethodName
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationFixMethodOrderTest ‑ migrates_with_other_junit_cleanup
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationFixMethodOrderTest ‑ removes_DEFAULT_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationIgnoreTest ‑ migrates_ignore_with_explicit_value_attribute
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationIgnoreTest ‑ migrates_ignore_with_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationIgnoreTest ‑ migrates_ignore_without_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationIgnoreTest ‑ migrates_multiple_ignored_tests
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ adds_Test_annotation_to_testMethods
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ combined_lifecycle_and_assertions
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ migrates_assertEquals_with_message
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ migrates_assertNull_assertNotNull
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ migrates_assertTrue_assertFalse
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ migrates_fail_call
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ migrates_setUp_to_BeforeEach
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ migrates_tearDown_to_AfterEach
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ no_change_for_non_TestCase_class
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationJUnit3Test ‑ removes_extends_TestCase
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationLifecycleTest ‑ migrates_afterClass_to_afterAll
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationLifecycleTest ‑ migrates_after_to_afterEach
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationLifecycleTest ‑ migrates_all_lifecycle_methods_together
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationLifecycleTest ‑ migrates_beforeClass_to_beforeAll
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationLifecycleTest ‑ migrates_before_to_beforeEach
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_errorCollector_multiple_test_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_junit4_rules_to_junit5_extensions(RuleCases)
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_temporaryFolder_rule
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_testName_rule
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_timeout_rule
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_timeout_rule_with_millis
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRulesToExtensionsTest ‑ migrates_timeout_rule_with_seconds
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersAdvancedTest ‑ migrates_runWith_categories_to_suite_with_tags
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersAdvancedTest ‑ migrates_runWith_enclosed_to_nested
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersAdvancedTest ‑ migrates_runWith_theories_to_parameterizedTest
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersTest ‑ migrates_runWith_mockito
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersTest ‑ migrates_runWith_parameterized
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersTest ‑ migrates_runWith_spring
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationRunnersTest ‑ migrates_runWith_suite
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_large_timeout_value
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_multiple_test_methods
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_multiple_timeout_tests
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_test_annotation_basic
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_test_timeout_to_timeout_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_test_timeout_with_milliseconds
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationTestAnnotationTest ‑ migrates_test_timeout_with_other_parameters
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationThrowingRunnableTest ‑ migrates_basic_type_replacement
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationThrowingRunnableTest ‑ migrates_complete_eclipse_platform_example
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationThrowingRunnableTest ‑ migrates_generic_type_parameter
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationThrowingRunnableTest ‑ migrates_local_variable
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationThrowingRunnableTest ‑ migrates_method_call_replacement
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationThrowingRunnableTest ‑ migrates_method_parameter
org.eclipse.jdt.ui.tests.quickfix.Java8.MigrationThrowingRunnableTest ‑ migrates_static_final_field
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ afterClassJUnitPlugin_migrates_afterClass_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ afterJUnitPlugin_migrates_after_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ beforeClassJUnitPlugin_migrates_beforeClass_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ beforeJUnitPlugin_migrates_before_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ ignoreJUnitPlugin_migrates_without_reason
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ ignoreJUnitPlugin_preserves_reason
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ testJUnitPlugin_migrates_test_annotation
org.eclipse.jdt.ui.tests.quickfix.Java8.TriggerPatternPluginTest ‑ v2_plugins_work_together_in_complex_class
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testArrayListToList
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testHashMapToMap
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testHashSetToSet
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testLinkedHashMapToMap
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testLinkedListToDeque
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testLinkedListToDequeWithAddFirst
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testListToCollection
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testNoChangeWithArray
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testNoChangeWithAssignment
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testNoChangeWithCast
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testNoChangeWithInstanceof
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testNoChangeWithMethodArgument
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testNoChangeWithPrimitive
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testNoChangeWithReturnStatement
org.eclipse.jdt.ui.tests.quickfix.UseGeneralTypeCleanUpTest ‑ testTreeSetToNavigableSet
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testAnalyticsAuthorsEmptyRepo
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testAnalyticsNoRepoParam
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testAnalyticsPacksEmptyRepo
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testCreateRepository
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testCreateRepositoryMissingName
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testGetRepository
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testHealthEndpoint
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testHibernateConfigBuildProperties
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testResolverNormalizesRepoName
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testSearchCommitsEmptyRepo
org.eclipse.jgit.server.JGitServerWebAppTest ‑ testSearchCommitsNoParams
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test01_HealthEndpoint
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test02_CreateRepo
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test03_GetRepo
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test04_CloneEmptyRepo
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test05_CommitAndPush
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test06_VerifyCommitInDatabase
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test07_SearchCommitsViaRest
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test08_SearchPathsViaRest
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test09_AnalyticsAuthorsViaRest
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test10_AnalyticsObjectsViaRest
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test11_AnalyticsPacksViaRest
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test12_PushJavaFileAndSearchByType
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test13_SearchBySymbolViaRest
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test14_SearchSourceViaRest
org.eclipse.jgit.server.e2e.EndToEndH2Test ‑ test15_SearchHierarchyViaRest
org.eclipse.jgit.storage.hibernate.entity.FloatArrayConverterTest ‑ embeddingDimensionRoundTrips
org.eclipse.jgit.storage.hibernate.entity.FloatArrayConverterTest ‑ emptyArrayRoundTrips
org.eclipse.jgit.storage.hibernate.entity.FloatArrayConverterTest ‑ nullConvertsToDatabaseColumnAsNull
org.eclipse.jgit.storage.hibernate.entity.FloatArrayConverterTest ‑ nullConvertsToEntityAttributeAsNull
org.eclipse.jgit.storage.hibernate.entity.FloatArrayConverterTest ‑ roundTripPreservesValues
org.eclipse.jgit.storage.hibernate.entity.FloatArrayConverterTest ‑ singleElementRoundTrips
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ buildEmbeddingTextClassAndDocumentation
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ buildEmbeddingTextClassNameOnly
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ buildEmbeddingTextDocumentationOnly
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ buildEmbeddingTextWithAllFields
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ buildEmbeddingTextWithEmptyFields
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ buildEmbeddingTextWithNullFields
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ disabledServiceReturnsNull
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ embedReturnsNullForBlankText
org.eclipse.jgit.storage.hibernate.search.EmbeddingServiceTest ‑ embeddingDimensionConstantIs384
org.eclipse.jgit.storage.hibernate.search.RankFusionUtilTest ‑ emptyListsReturnEmpty
org.eclipse.jgit.storage.hibernate.search.RankFusionUtilTest ‑ nullIdsAreSkipped
org.eclipse.jgit.storage.hibernate.search.RankFusionUtilTest ‑ overlappingEntriesGetHigherScore
org.eclipse.jgit.storage.hibernate.search.RankFusionUtilTest ‑ singleFulltextListReturnsSameOrder
org.eclipse.jgit.storage.hibernate.search.RankFusionUtilTest ‑ singleSemanticListReturnsSameOrder
org.eclipse.jgit.storage.hibernate.search.RankFusionUtilTest ‑ topKLimitsResults
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ apiChangeEntryAllowsNullFields
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ apiChangeEntryConstructorSetsFields
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ apiChangeEntryDefaultConstructor
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ apiChangeEntrySetters
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ constructorSetsAllFields
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ defaultConstructorCreatesEmptyDto
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ emptyListsAreValid
org.eclipse.jgit.storage.hibernate.service.ApiDiffResultTest ‑ settersWorkCorrectly
org.sandbox.ast.api.expr.InfixExprTest ‑ testASTExprInterfaceMethods
org.sandbox.ast.api.expr.InfixExprTest ‑ testArithmeticChecks
org.sandbox.ast.api.expr.InfixExprTest ‑ testBasicConstruction
org.sandbox.ast.api.expr.InfixExprTest ‑ testComparisonChecks
org.sandbox.ast.api.expr.InfixExprTest ‑ testExtendedOperands
org.sandbox.ast.api.expr.InfixExprTest ‑ testLogicalChecks
org.sandbox.ast.api.expr.InfixExprTest ‑ testNullLeftOperandThrows
org.sandbox.ast.api.expr.InfixExprTest ‑ testNullOperatorThrows
org.sandbox.ast.api.expr.InfixExprTest ‑ testNullRightOperandThrows
org.sandbox.ast.api.expr.InfixExprTest ‑ testNumericOperation
org.sandbox.ast.api.expr.InfixExprTest ‑ testStringConcatenation
org.sandbox.ast.api.expr.InfixOperatorTest ‑ testArithmeticOperators
org.sandbox.ast.api.expr.InfixOperatorTest ‑ testBitwiseOperators
org.sandbox.ast.api.expr.InfixOperatorTest ‑ testComparisonOperators
org.sandbox.ast.api.expr.InfixOperatorTest ‑ testFromSymbol
org.sandbox.ast.api.expr.InfixOperatorTest ‑ testLogicalOperators
org.sandbox.ast.api.expr.InfixOperatorTest ‑ testSymbol
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testASTExprInterfaceMethods
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testArgumentAccess
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testBasicConstruction
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testChainedMethodCall
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testHasReceiver
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testMethodCallChecks
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testReceiverTypeCheck
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testStaticMethodCheck
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testWithArguments
org.sandbox.ast.api.expr.MethodInvocationExprTest ‑ testWithMethodInfo
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testASTExprInterfaceMethods
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testBasicConstruction
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testEmptyIdentifierThrows
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testFieldAndParameterChecks
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testNullIdentifierThrows
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testVariableModifierChecks
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testVariableTypeCheck
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testWithMethodBinding
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testWithTypeBinding
org.sandbox.ast.api.expr.SimpleNameExprTest ‑ testWithVariableBinding
org.sandbox.ast.api.info.MethodInfoTest ‑ testEquals
org.sandbox.ast.api.info.MethodInfoTest ‑ testHasSignature
org.sandbox.ast.api.info.MethodInfoTest ‑ testIsCollectionStream
org.sandbox.ast.api.info.MethodInfoTest ‑ testIsListAdd
org.sandbox.ast.api.info.MethodInfoTest ‑ testIsListGet
org.sandbox.ast.api.info.MethodInfoTest ‑ testIsMathMax
org.sandbox.ast.api.info.MethodInfoTest ‑ testIsMathMin
org.sandbox.ast.api.info.MethodInfoTest ‑ testMethodWithParameters
org.sandbox.ast.api.info.MethodInfoTest ‑ testModifiers
org.sandbox.ast.api.info.MethodInfoTest ‑ testSignature
org.sandbox.ast.api.info.MethodInfoTest ‑ testSimpleMethod
org.sandbox.ast.api.info.MethodInfoTest ‑ testValidation_emptyName
org.sandbox.ast.api.info.MethodInfoTest ‑ testValidation_nullName
org.sandbox.ast.api.info.MethodInfoTest ‑ testValidation_nullReturnType
org.sandbox.ast.api.info.ModifierTest ‑ testFromJdtFlags_empty
org.sandbox.ast.api.info.ModifierTest ‑ testFromJdtFlags_privateStatic
org.sandbox.ast.api.info.ModifierTest ‑ testFromJdtFlags_public
org.sandbox.ast.api.info.ModifierTest ‑ testFromJdtFlags_publicStaticFinal
org.sandbox.ast.api.info.ModifierTest ‑ testGetFlag
org.sandbox.ast.api.info.ModifierTest ‑ testIsPresentIn_public
org.sandbox.ast.api.info.ModifierTest ‑ testIsPresentIn_publicStatic
org.sandbox.ast.api.info.ModifierTest ‑ testRoundTrip
org.sandbox.ast.api.info.ModifierTest ‑ testToJdtFlags
org.sandbox.ast.api.info.ModifierTest ‑ testToJdtFlags_empty
org.sandbox.ast.api.info.ParameterInfoTest ‑ testSimpleParameter
org.sandbox.ast.api.info.ParameterInfoTest ‑ testValidation_nullName
org.sandbox.ast.api.info.ParameterInfoTest ‑ testValidation_nullType
org.sandbox.ast.api.info.ParameterInfoTest ‑ testVarargsParameter
org.sandbox.ast.api.info.TypeInfoTest ‑ testArrayType
org.sandbox.ast.api.info.TypeInfoTest ‑ testBoxed
org.sandbox.ast.api.info.TypeInfoTest ‑ testBuilder_of
org.sandbox.ast.api.info.TypeInfoTest ‑ testBuilder_ofClass
org.sandbox.ast.api.info.TypeInfoTest ‑ testEquals
org.sandbox.ast.api.info.TypeInfoTest ‑ testEquals_withGeneric
org.sandbox.ast.api.info.TypeInfoTest ‑ testGenericType
org.sandbox.ast.api.info.TypeInfoTest ‑ testIsCollection
org.sandbox.ast.api.info.TypeInfoTest ‑ testIsList
org.sandbox.ast.api.info.TypeInfoTest ‑ testIsNumeric_primitive
org.sandbox.ast.api.info.TypeInfoTest ‑ testIsNumeric_wrapper
org.sandbox.ast.api.info.TypeInfoTest ‑ testIsOptional
org.sandbox.ast.api.info.TypeInfoTest ‑ testIsStream
org.sandbox.ast.api.info.TypeInfoTest ‑ testIs_withClass
org.sandbox.ast.api.info.TypeInfoTest ‑ testIs_withQualifiedName
org.sandbox.ast.api.info.TypeInfoTest ‑ testPrimitiveType
org.sandbox.ast.api.info.TypeInfoTest ‑ testSimpleType
org.sandbox.ast.api.info.TypeInfoTest ‑ testToString_array
org.sandbox.ast.api.info.TypeInfoTest ‑ testToString_generic
org.sandbox.ast.api.info.TypeInfoTest ‑ testToString_simple
org.sandbox.ast.api.info.TypeInfoTest ‑ testValidation_emptyQualifiedName
org.sandbox.ast.api.info.TypeInfoTest ‑ testValidation_negativeArrayDimensions
org.sandbox.ast.api.info.TypeInfoTest ‑ testValidation_nullQualifiedName
org.sandbox.ast.api.info.VariableInfoTest ‑ testFieldVariable
org.sandbox.ast.api.info.VariableInfoTest ‑ testHasModifier
org.sandbox.ast.api.info.VariableInfoTest ‑ testHasType_class
org.sandbox.ast.api.info.VariableInfoTest ‑ testHasType_string
org.sandbox.ast.api.info.VariableInfoTest ‑ testParameterVariable
org.sandbox.ast.api.info.VariableInfoTest ‑ testRecordComponentVariable
org.sandbox.ast.api.info.VariableInfoTest ‑ testSimpleVariable
org.sandbox.ast.api.info.VariableInfoTest ‑ testStaticField
org.sandbox.ast.api.info.VariableInfoTest ‑ testValidation_emptyName
org.sandbox.ast.api.info.VariableInfoTest ‑ testValidation_nullName
org.sandbox.ast.api.info.VariableInfoTest ‑ testValidation_nullType
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testAsEnhancedFor
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testBasicConstruction
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testEmptyStmt
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testFullyPopulated
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testHasBody
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testHasIterable
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testHasParameter
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testIterableHasType
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testNullHandling
org.sandbox.ast.api.stmt.EnhancedForStmtTest ‑ testParameterHasType
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testAsForLoop
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testBasicConstruction
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testEmptyStmt
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testFullyPopulated
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testHasBody
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testHasCondition
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testIndexOutOfBounds
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testInfiniteLoop
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testInitializersAsList
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testMultipleInitializers
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testMultipleUpdaters
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testNullHandling
org.sandbox.ast.api.stmt.ForLoopStmtTest ‑ testUpdatersAsList
org.sandbox.ast.api.stmt.IfStmtTest ‑ testAsIfStatement
org.sandbox.ast.api.stmt.IfStmtTest ‑ testBasicConstruction
org.sandbox.ast.api.stmt.IfStmtTest ‑ testConditionHasType
org.sandbox.ast.api.stmt.IfStmtTest ‑ testElseIf
org.sandbox.ast.api.stmt.IfStmtTest ‑ testElseIfChain
org.sandbox.ast.api.stmt.IfStmtTest ‑ testEmptyStmt
org.sandbox.ast.api.stmt.IfStmtTest ‑ testFullyPopulated
org.sandbox.ast.api.stmt.IfStmtTest ‑ testHasCondition
org.sandbox.ast.api.stmt.IfStmtTest ‑ testHasElseStatement
org.sandbox.ast.api.stmt.IfStmtTest ‑ testHasThenStatement
org.sandbox.ast.api.stmt.IfStmtTest ‑ testNoElseIf
org.sandbox.ast.api.stmt.IfStmtTest ‑ testNullHandling
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testAsWhileLoop
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testBasicConstruction
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testConditionHasType
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testEmptyStmt
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testFullyPopulated
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testHasBody
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testHasBooleanTypedCondition
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testHasCondition
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testHasConstantCondition_deprecated
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testNestedInEnhancedFor
org.sandbox.ast.api.stmt.WhileLoopStmtTest ‑ testNullHandling
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testAndThen
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testBasicMethodInvocationVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testBasicSimpleNameVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testComplexVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testConditionalHandlerWithFilter
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testConditionalHandlerWithWhen
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testEmptyVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testEnhancedForVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testFieldAccessVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testForLoopVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testIfStatementVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testInfixConditionalVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testInfixVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testMixedExpressionsAndStatements
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testMultipleConditions
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testMultipleHandlers
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testOnAnyVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testOnExpressionVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testOnStatementVisitor
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testVisitAll
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testVisitAllWithNull
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testVisitNullNode
org.sandbox.ast.api.visitor.FluentVisitorTest ‑ testWhileLoopVisitor
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testAllOperationTypes
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testAllTerminalTypes
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testBuildFilterMapPipeline
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testBuildSimpleForEach
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testConvertibilityCheck
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testConvertibilityCheckNoMetadata
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testConvertibilityCheckWithReturn
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testConvertibilityCheckWithoutProblems
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testElementWithDescriptor
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testExplicitRangeSource
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testExplicitRangeWithFilter
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testMapWithoutTargetType
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testSortedWithComparator
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testSourceWithDescriptor
org.sandbox.functional.core.builder.LoopModelBuilderTest ‑ testValidation
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testAllMatchTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testAnyMatchTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testArraySource
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testCanBuildWithBreak
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testCanBuildWithNullModel
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testCanBuildWithNullSource
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testCanBuildWithValidModel
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testCollectTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testCollectToSet
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testComplexPipeline
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testCountTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testDistinctOperation
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testExplicitRangeSource
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testExplicitRangeSourceImport
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testExplicitRangeSourceWithVariables
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testFilterMapForEach
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testFindAnyTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testFindFirstTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testFlatMapOperation
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testIntRangeSource
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testIntRangeSourceImport
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testIterableSource
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testIterableSourceImport
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testLimitOperation
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testMultipleStatementsInForEach
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testNoneMatchTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testPeekOperation
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testReduceTerminal
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testRequiredImports
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testSimpleForEach
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testSkipOperation
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testSortedOperation
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testSortedWithComparator
org.sandbox.functional.core.builder.StreamCodeBuilderTest ‑ testStreamSource
org.sandbox.functional.core.model.LoopMetadataTest ‑ testBreakBlocksConversion
org.sandbox.functional.core.model.LoopMetadataTest ‑ testContinueAloneDoesNotBlockConversion
org.sandbox.functional.core.model.LoopMetadataTest ‑ testIndexBeyondGetBlocksConversion
org.sandbox.functional.core.model.LoopMetadataTest ‑ testIteratorRemoveBlocksConversion
org.sandbox.functional.core.model.LoopMetadataTest ‑ testModifiesCollectionBlocksConversion
org.sandbox.functional.core.model.LoopMetadataTest ‑ testMultipleBlockingFlags
org.sandbox.functional.core.model.LoopMetadataTest ‑ testRequiresOrderingAloneDoesNotBlockConversion
org.sandbox.functional.core.model.LoopMetadataTest ‑ testReturnBlocksConversion
org.sandbox.functional.core.model.LoopMetadataTest ‑ testSafeMetadataFieldValues
org.sandbox.functional.core.model.LoopMetadataTest ‑ testSafeMetadataIsConvertible
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testAddMultipleOperations
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testAddOperationRejectsNull
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testAddOperationsClearedByCreatingNewModel
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testBuildCompleteModel
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testEmptyPipeline
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testEqualsIncludesOperationsAndTerminal
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testExplicitRangeWithFilterAndMap
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testExplicitRangeWithForEach
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testFluentApiAddOperationReturnsThis
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testFluentApiElementReturnsThis
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testFluentApiMetadataReturnsThis
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testFluentApiSourceReturnsThis
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testFluentApiWithTerminalReturnsThis
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testGetOperationsReturnsUnmodifiableList
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testHashCodeIncludesOperationsAndTerminal
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testOperationsAreIndependent
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testSetTerminal
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testToStringIncludesOperationsAndTerminal
org.sandbox.functional.core.model.LoopModelPipelineTest ‑ testWithTerminalRejectsNull
org.sandbox.functional.core.model.LoopModelTest ‑ testElementDescriptor
org.sandbox.functional.core.model.LoopModelTest ‑ testLoopMetadata
org.sandbox.functional.core.model.LoopModelTest ‑ testLoopModelCanBeInstantiated
org.sandbox.functional.core.model.LoopModelTest ‑ testLoopModelToString
org.sandbox.functional.core.model.LoopModelTest ‑ testLoopModelWithComponents
org.sandbox.functional.core.model.LoopModelTest ‑ testSourceDescriptor
org.sandbox.functional.core.operation.CommentPreservationTest ‑ testFilterWithComments
org.sandbox.functional.core.operation.CommentPreservationTest ‑ testFilterWithoutComments
org.sandbox.functional.core.operation.CommentPreservationTest ‑ testMapWithComments
org.sandbox.functional.core.operation.CommentPreservationTest ‑ testMultipleOperationsWithComments
org.sandbox.functional.core.operation.OperationTest ‑ testCommentsAreImmutable
org.sandbox.functional.core.operation.OperationTest ‑ testDistinctOp
org.sandbox.functional.core.operation.OperationTest ‑ testFilterOp
org.sandbox.functional.core.operation.OperationTest ‑ testFilterOpAddCommentsList
org.sandbox.functional.core.operation.OperationTest ‑ testFilterOpComments
org.sandbox.functional.core.operation.OperationTest ‑ testFilterOpCommentsIgnoreNull
org.sandbox.functional.core.operation.OperationTest ‑ testFlatMapOp
org.sandbox.functional.core.operation.OperationTest ‑ testLimitOp
org.sandbox.functional.core.operation.OperationTest ‑ testMapOp
org.sandbox.functional.core.operation.OperationTest ‑ testMapOpAddCommentsList
org.sandbox.functional.core.operation.OperationTest ‑ testMapOpComments
org.sandbox.functional.core.operation.OperationTest ‑ testMapOpSingleArg
org.sandbox.functional.core.operation.OperationTest ‑ testMapOpWithTargetType
org.sandbox.functional.core.operation.OperationTest ‑ testPeekOp
org.sandbox.functional.core.operation.OperationTest ‑ testSkipOp
org.sandbox.functional.core.operation.OperationTest ‑ testSortOpNatural
org.sandbox.functional.core.operation.OperationTest ‑ testSortOpWithComparator
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderAllMatch
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderAnyMatch
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderCollectToList
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderCollectToSet
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderCount
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderDistinct
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFilter
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFilterOpWithComments
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFilterOpWithMultiLineBlockComment
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFilterOpWithMultipleComments
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFilterOpWithoutComments
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFindAny
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFindFirst
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderFlatMap
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderForEach
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderForEachMultipleStatements
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderForEachOrdered
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderLimit
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderMap
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderMapOpSideEffect
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderMapOpSideEffectTakesPriorityOverComments
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderMapOpWithComments
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderMapOpWithoutComments
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderNoneMatch
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderPeek
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderReduce
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSkip
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSortedWithComparator
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSortedWithoutComparator
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceArray
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceCollection
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRange
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeInvalidEmptyEnd
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeInvalidEmptyStart
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeInvalidMultipleCommas
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeInvalidNoComma
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeInvalidOnlyComma
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeInvalidWhitespaceOnly
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeWithExpression
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceExplicitRangeWithVariables
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceIntRange
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceIterable
org.sandbox.functional.core.renderer.StringRendererTest ‑ testRenderSourceStream
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testCollectTerminal
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testCountTerminal
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testFindAnyTerminal
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testFindFirstTerminal
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testForEachOrderedTerminal
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testForEachTerminal
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testForEachTerminalSingleArg
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testMatchTerminalAllMatch
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testMatchTerminalAnyMatch
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testMatchTerminalNoneMatch
org.sandbox.functional.core.terminal.TerminalOperationTest ‑ testReduceTerminal
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testArraySource
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testCanTransformValidModel
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testCanTransformWithBreak
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testCanTransformWithNullModel
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testCanTransformWithNullSource
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testCollectTerminal
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testComplexPipeline
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testCountTerminal
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testDefaultVariableNameWhenElementIsNull
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testFilterMapPipeline
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testFindFirstTerminal
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testPeekOperation
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testSimpleForEach
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testSkipOperation
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testTransformThrowsOnNullModel
org.sandbox.functional.core.transformer.LoopModelTransformerTest ‑ testTransformThrowsOnNullSource
org.sandbox.functional.core.tree.LoopTreeTest ‑ astNodeReference
org.sandbox.functional.core.tree.LoopTreeTest ‑ nestedLoops_innerConvertible
org.sandbox.functional.core.tree.LoopTreeTest ‑ nestedLoops_innerNotConvertible
org.sandbox.functional.core.tree.LoopTreeTest ‑ scopePropagation
org.sandbox.functional.core.tree.LoopTreeTest ‑ siblingLoops
org.sandbox.functional.core.tree.LoopTreeTest ‑ singleLoop
org.sandbox.functional.core.tree.LoopTreeTest ‑ threeLevelNesting
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testCombinedNewArguments
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testDefaultModeIsApply
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testDefaultScopeIsBoth
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testDirectory
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testDoubleHyphenHelpFlag
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testExitCodeConstants
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testHelpContainsNewArguments
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testHelpFlag
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testMissingConfigFile
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testModeApply
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testModeCheck
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testModeDiff
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testModeInvalid
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testMultipleFiles
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testNoFilesSpecified
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testNonExistentConfigFile
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testNonExistentFile
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testPatchArgument
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testQuietFlag
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testQuietVerboseConflict
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testReportArgument
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testScopeInvalid
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testScopeMain
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testScopeTest
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testSourceArgument
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithFunctionalLoopCleanupChainedAnyMatch
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithFunctionalLoopCleanupSimpleAllMatch
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithFunctionalLoopCleanupSimpleForEach
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithHelp
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithMissingConfig
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithQuietMode
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithQuietVerboseConflict
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithVerboseMode
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testStartWithWhileToEnhancedForLoopCleanup
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testValidConfigMode
org.sandbox.jdt.core.cleanupapp.CodeCleanupApplicationTest ‑ testVerboseFlag
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testAfterClassJUnitPlugin_hasRewriteRuleAnnotation
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testAfterJUnitPlugin_hasRewriteRuleAnnotation
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testBeforeClassJUnitPlugin_hasRewriteRuleAnnotation
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testBeforeJUnitPlugin_hasRewriteRuleAnnotation
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testIgnoreJUnitPlugin_hasRewriteRuleAnnotation
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testRewriteRule_actualTransformation_After
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testRewriteRule_actualTransformation_AfterClass
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testRewriteRule_actualTransformation_Before
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testRewriteRule_actualTransformation_BeforeClass
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testRewriteRule_defaultValues
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testRewriteRule_integrationWithCleanupPattern
org.sandbox.jdt.internal.corext.fix.helper.RewriteRuleTest ‑ testTestJUnitPlugin_hasRewriteRuleAnnotation
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testAfterClassJUnitPlugin_annotation
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testAfterJUnitPlugin_annotation
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testBeforeClassJUnitPlugin_annotation
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testCleanupPatternAnnotation_isPresent
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testGetCleanupId_returnsIdFromAnnotation
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testGetDescription_returnsDescriptionFromAnnotation
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testGetPattern_returnsCorrectPattern
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testGetPreview_afterRefactoring
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testGetPreview_beforeRefactoring
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testIgnoreJUnitPlugin_annotation
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testIgnoreJUnitPlugin_preview_withReason
org.sandbox.jdt.internal.corext.fix.helper.TriggerPatternCleanupPluginTest ‑ testTestJUnitPlugin_annotation
org.sandbox.jdt.internal.css.core.CSSValidationResultTest ‑ testInvalidResultWithIssues
org.sandbox.jdt.internal.css.core.CSSValidationResultTest ‑ testIssueProperties
org.sandbox.jdt.internal.css.core.CSSValidationResultTest ‑ testIssuesListIsUnmodifiable
org.sandbox.jdt.internal.css.core.CSSValidationResultTest ‑ testNullIssuesListHandling
org.sandbox.jdt.internal.css.core.CSSValidationResultTest ‑ testValidResult
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testExecuteNpxWithInvalidCommand
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testExecuteNpxWithVersion
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testExecutionResultClassExists
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testIsNodeAvailableDoesNotThrow
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testIsNpxAvailableDoesNotThrow
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testNodeAvailabilityCheckIsConsistent
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testNodeIsActuallyAvailable
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testNpxAvailabilityCheckIsConsistent
org.sandbox.jdt.internal.css.core.NodeExecutorTest ‑ testNpxIsActuallyAvailable
org.sandbox.jdt.internal.css.core.PrettierRunnerTest ‑ testFormatCssWithMultipleRules
org.sandbox.jdt.internal.css.core.PrettierRunnerTest ‑ testFormatPreservesSemantics
org.sandbox.jdt.internal.css.core.PrettierRunnerTest ‑ testFormatSimpleCss
org.sandbox.jdt.internal.css.core.PrettierRunnerTest ‑ testFormatThrowsWhenNpxNotAvailable
org.sandbox.jdt.internal.css.core.PrettierRunnerTest ‑ testIsPrettierAvailable
org.sandbox.jdt.internal.css.core.PrettierRunnerTest ‑ testPrettierRunnerIsInstantiable
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testFixPreservesSemantics
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testFixReturnsString
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testFixThrowsWhenNpxNotAvailable
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testIsStylelintAvailable
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testStylelintRunnerIsInstantiable
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testValidateReturnsCSSValidationResult
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testValidateThrowsWhenNpxNotAvailable
org.sandbox.jdt.internal.css.core.StylelintRunnerTest ‑ testValidateValidCss
org.sandbox.jdt.triggerpattern.TriggerPatternCleanupTest ‑ testAnnotationPatternMatching
org.sandbox.jdt.triggerpattern.TriggerPatternCleanupTest ‑ testAnnotationWithPlaceholder
org.sandbox.jdt.triggerpattern.TriggerPatternCleanupTest ‑ testAnnotationWithQualifiedType
org.sandbox.jdt.triggerpattern.TriggerPatternCleanupTest ‑ testMultipleAnnotationMatches
org.sandbox.jdt.triggerpattern.TriggerPatternCleanupTest ‑ testNoMatchesForDifferentAnnotation
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testDefaultPromotionThreshold
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testGetAllMatchCounts
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testGetRulesForPromotion
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testGetRulesWithNoMatches
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testGetSuggestionKeep
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testGetSuggestionPromote
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testGetSuggestionRemove
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testRecordAndGetMatchCount
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testRecordMatchesNegativeCountIgnored
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testRecordMatchesZeroCountIgnored
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testRecordMultipleMatches
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testReset
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testSetPromotionThresholdRejectsZero
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testThreadSafety
org.sandbox.jdt.triggerpattern.api.RuleUsageTrackerTest ‑ testTrackRuleDoesNotOverwriteExisting
org.sandbox.jdt.triggerpattern.git.CommitWalkerTest ‑ testBatchSizeLimiting
org.sandbox.jdt.triggerpattern.git.CommitWalkerTest ‑ testNextBatchOnEmptyRepo
org.sandbox.jdt.triggerpattern.git.CommitWalkerTest ‑ testNextBatchWithDateFilter
org.sandbox.jdt.triggerpattern.internal.DslExplanationGuardSyncTest ‑ everyCodeGuardIsDocumented
org.sandbox.jdt.triggerpattern.internal.DslExplanationGuardSyncTest ‑ everyDocumentedGuardExistsInCode
org.sandbox.jdt.triggerpattern.internal.DslExplanationGuardSyncTest ‑ guardCountsAreSane
org.sandbox.jdt.triggerpattern.internal.DslExplanationValidatorTest ‑ allCodeFencedDslExamplesAreValid
org.sandbox.jdt.triggerpattern.internal.DslExplanationValidatorTest ‑ codeBlocksExistInDocumentation
org.sandbox.jdt.triggerpattern.internal.DslValidatorTest ‑ testValidateBlankRule
org.sandbox.jdt.triggerpattern.internal.DslValidatorTest ‑ testValidateEmptyRule
org.sandbox.jdt.triggerpattern.internal.DslValidatorTest ‑ testValidateInvalidRule
org.sandbox.jdt.triggerpattern.internal.DslValidatorTest ‑ testValidateNullRule
org.sandbox.jdt.triggerpattern.internal.DslValidatorTest ‑ testValidateSimpleRule
org.sandbox.jdt.triggerpattern.internal.HintFileResourcesValidationTest ‑ testAllBundledHintFilesValid
org.sandbox.jdt.triggerpattern.internal.HintFileResourcesValidationTest ‑ testDisabledHintFilesArePartOfValidationSet
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeCaseInsensitive
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeEmptyHintFile
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeNullThrows
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializePerRuleId
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializePerRuleSeverity
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeRoundTrip
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeRuleWithDescription
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeRuleWithGuard
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeSimpleRule
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeSuppressWarnings
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeTreeKind
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeWithDefaultSeverityOmitted
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeWithIncludes
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializeWithMetadata

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

2779 tests found (test 1530 to 2226)

There are 2779 tests, see "Raw output" for the list of tests 1530 to 2226.
Raw output
org.sandbox.jdt.triggerpattern.internal.HintFileSerializerTest ‑ testSerializerRoundTripWithPerRuleMetadata
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testGetInferredHintFilesExcludesManual
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testLoadFromNonExistentDirectoryReturnsEmpty(Path)
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testPromoteNonExistentIsNoOp
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testPromoteToManual
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testRegisterInferredRulesBatchNullList
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testRegisterInferredRulesBatchSkipsBlankDslRule
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testRegisterInferredRulesBatchSkipsInvalidDsl
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testRegisterInferredRulesBatchSkipsIrrelevant
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testRegisterInferredRulesBatchSkipsNullDslRule
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testRegisterInferredRulesBatchWithValidEvaluations
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testRegisterInferredRulesSingle
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testSaveAndLoadInferredHintFiles(Path)
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testSaveCreatesHintsDirectory(Path)
org.sandbox.jdt.triggerpattern.internal.HintFileStoreTest ‑ testSaveWithNoInferredFilesReturnsEmpty(Path)
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testBuildSimpleDiffFormat
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleFromDiffWithBlankDiffReturnsEmpty
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleFromDiffWithValidDiff
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRulePassesPromptToLlm
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleValidatesDslRule
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleWhenApiUnavailable
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleWhenLlmReturnsNull
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleWhenQuotaExhausted
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleWithIOExceptionReturnsEmpty
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleWithIrrelevantResult
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleWithNullInputReturnsEmpty
org.sandbox.jdt.triggerpattern.llm.AiRuleInferenceEngineTest ‑ testInferRuleWithRelevantResult
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testBuildRequestBody
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testDefaultModel
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testEvaluateBatchWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testEvaluateWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testFinishReasonContentFilterReturnsNull
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testFinishReasonLengthSetsLastResponseTruncated
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testHasRemainingQuotaAlwaysTrue
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testIsApiUnavailableInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testParseValidResponse
org.sandbox.jdt.triggerpattern.llm.DeepSeekClientTest ‑ testWasLastResponseTruncatedInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testBuildRequestBody
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testDefaultMaxFailureDuration
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testDefaultModelFallback
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testEvaluateBatchWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testEvaluateWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testExplicitModelIsUsed
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testExtractJsonFromCodeBlock
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testExtractJsonFromPlainCodeBlock
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testExtractJsonFromTruncatedCodeBlock
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testExtractJsonPlainText
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testExtractJsonPlainTruncated
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testFinishReasonMaxTokensSetsLastResponseTruncated
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testFinishReasonSafetyReturnsNull
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testFinishReasonStopNotTruncated
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testHasRemainingQuotaInitially
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testIsApiUnavailableAfterTimeoutElapsed
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testIsApiUnavailableInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testNullSafeCategoryDefault
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseBatchResponseEmptyCandidates
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseBatchResponseFewerElementsThanCommits
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseBatchResponseInvalidJson
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseBatchResponseMoreElementsThanCommits
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseBatchResponseValidArray
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseEmptyCandidates
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseInvalidJson
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseResponsePreservesCleanDslRule
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseResponseSanitizesImportTags
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseResponseSanitizesTriggerTags
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testParseValidResponse
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testRepairTruncatedJsonNullAndEmpty
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testRepairTruncatedJsonTrailingComma
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testRepairTruncatedJsonUnclosedBrace
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testRepairTruncatedJsonUnclosedBracket
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testRepairTruncatedJsonUnclosedString
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testRepairTruncatedJsonValidJson
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testSetAndGetMaxFailureDuration
org.sandbox.jdt.triggerpattern.llm.GeminiClientTest ‑ testWasLastResponseTruncatedInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testBuildRequestBody
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testDefaultModel
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testEvaluateBatchWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testEvaluateWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testFinishReasonContentFilterReturnsNull
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testFinishReasonLengthSetsLastResponseTruncated
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testHasRemainingQuotaAlwaysTrue
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testIsApiUnavailableInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testParseValidResponse
org.sandbox.jdt.triggerpattern.llm.LlamaClientTest ‑ testWasLastResponseTruncatedInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringDeepSeek
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringGeminiLowercase
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringGeminiUppercase
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringLlama
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringMistral
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringMixedCase
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringNullThrows
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringOpenAiLowercase
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringOpenAiUppercase
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringQwen
org.sandbox.jdt.triggerpattern.llm.LlmProviderTest ‑ testFromStringUnknownThrows
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testBuildRequestBody
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testDefaultModel
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testEvaluateBatchWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testEvaluateWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testFinishReasonContentFilterReturnsNull
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testFinishReasonLengthSetsLastResponseTruncated
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testHasRemainingQuotaAlwaysTrue
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testIsApiUnavailableInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testParseValidResponse
org.sandbox.jdt.triggerpattern.llm.MistralClientTest ‑ testWasLastResponseTruncatedInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testBuildRequestBody
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testDefaultMaxFailureDuration
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testDefaultModelUsed
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testEvaluateBatchWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testEvaluateWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testFinishReasonContentFilterReturnsNull
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testFinishReasonLengthSetsLastResponseTruncated
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testGetDailyRequestCountInitiallyZero
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testGetModelReturnsConfiguredModel
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testHasRemainingQuotaAlwaysTrue
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testIsApiUnavailableAfterTimeoutElapsed
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testIsApiUnavailableInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testParseBatchResponseEmpty
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testParseBatchResponseValid
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testParseEmptyChoices
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testParseInvalidJson
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testParseValidResponse
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testSetAndGetMaxFailureDuration
org.sandbox.jdt.triggerpattern.llm.OpenAiClientTest ‑ testWasLastResponseTruncatedInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildBatchPromptContainsAllCommits
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildBatchPromptContainsExistingPlugins
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildBatchPromptContainsJsonArraySchema
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildBatchPromptLabelsCommitsByIndex
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildBatchPromptRequestsArrayOfExactlyN
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildBatchPromptWithPreviousResults
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptContainsAllSections
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptContainsBidirectionalGuidance
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptContainsExistingPluginsSection
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptContainsJsonResponseFormat
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptContainsNewJsonSchemaFields
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptContainsSourceVersionTable
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptContainsTrafficLightInstructions
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptWithNullContext
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptWithPreviousResults
org.sandbox.jdt.triggerpattern.llm.PromptBuilderTest ‑ testBuildPromptWithoutPreviousResults
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testBuildRequestBody
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testDefaultModel
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testEvaluateBatchWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testEvaluateWithoutApiKey
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testFinishReasonContentFilterReturnsNull
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testFinishReasonLengthSetsLastResponseTruncated
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testHasRemainingQuotaAlwaysTrue
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testIsApiUnavailableInitiallyFalse
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testParseValidResponse
org.sandbox.jdt.triggerpattern.llm.QwenClientTest ‑ testWasLastResponseTruncatedInitiallyFalse
org.sandbox.jdt.triggerpattern.test.AstDiffAnalyzerTest ‑ testBothNull
org.sandbox.jdt.triggerpattern.test.AstDiffAnalyzerTest ‑ testIdenticalExpressions
org.sandbox.jdt.triggerpattern.test.AstDiffAnalyzerTest ‑ testLeafModification
org.sandbox.jdt.triggerpattern.test.AstDiffAnalyzerTest ‑ testMethodCallRename
org.sandbox.jdt.triggerpattern.test.AstDiffAnalyzerTest ‑ testNullHandling
org.sandbox.jdt.triggerpattern.test.AsyncCommitAnalyzerTest ‑ testAnalyzeAllMultipleCommits
org.sandbox.jdt.triggerpattern.test.AsyncCommitAnalyzerTest ‑ testAnalyzeCommitWithFailure
org.sandbox.jdt.triggerpattern.test.AsyncCommitAnalyzerTest ‑ testAnalyzeCommitWithJavaChange
org.sandbox.jdt.triggerpattern.test.AsyncCommitAnalyzerTest ‑ testAnalyzeCommitWithNoJavaFiles
org.sandbox.jdt.triggerpattern.test.AsyncCommitAnalyzerTest ‑ testFailureListenerCallback
org.sandbox.jdt.triggerpattern.test.AsyncCommitAnalyzerTest ‑ testListenerCallbacks
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testGetHintFile
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testInstanceOfGuardGracefulDegradation
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testInstanceOfGuardParsingFromHintFile
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testMultipleGuardContinuationLines
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testProcessHintOnly
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testProcessMultipleMatchesSameRule
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testProcessMultipleRules
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testProcessNoMatch
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testProcessNullCu
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testProcessSimpleRule
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testProcessWithHintFileParser
org.sandbox.jdt.triggerpattern.test.BatchTransformationProcessorTest ‑ testTypeGuardDisambiguatesRules
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testAllBuiltInGuardsRegistered
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testAllNewTier3GuardsRegistered
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testArgsCountWithList
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testArgsCountWithSingleBinding
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testArgsCountWithUnbound
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testClassOverridesInsufficientArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testClassOverridesWithExistingMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testClassOverridesWithMissingMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testContainsAnnotationGuard
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testEnclosingClassExtendsDirectSuperclass
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testEnclosingClassExtendsNoArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testEnclosingClassExtendsNoExtendsClause
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testGenericTypeIsGracefulDegradation
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testGenericTypeIsWithBadIndex
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testGenericTypeIsWithNullBinding
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasFieldNegative
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasFieldNoArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasFieldPositive
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasModifierGuard
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasReturnTypeNoArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasReturnTypeString
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasReturnTypeTwoArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasReturnTypeVoid
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasSuppressWarningsAbsent
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasSuppressWarningsOnClass
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasSuppressWarningsWithArrayValue
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testHasSuppressWarningsWithSingleValue
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testInClassGuard
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testInPackageGuard
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testInstanceOfGuardGracefulDegradationWithoutBindings
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testInstanceOfGuardInsufficientArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testInstanceOfGuardWithNullBinding
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsCharsetStringWithNonStandardCharset
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsCharsetStringWithUTF8
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsFieldInsufficientArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsFieldWithField
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsFieldWithLocalVariable
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsInConstructorInsideConstructor
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsInConstructorInsideMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsInLoopNegative
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsInLoopPositiveForLoop
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsInLoopPositiveWhileLoop
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsInTryWithResourceBlockNegative
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsLiteralWithNonLiteral
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsLiteralWithStringLiteral
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNonNullWithNullBinding
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNonNullWithStringBuilder
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNonNullWithUnguardedParameter
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNullLiteralWithNullExpression
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNullableWithMinScore10
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNullableWithMinScore5
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNullableWithNullBinding
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNullableWithStringBuilderInitialized
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsNullableWithUnguardedParameter
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsParameterInsufficientArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsParameterWithLocalVariable
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsParameterWithParameter
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsPrivateGuardOnPrivateMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsProtectedGuardOnProtectedMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsProtectedGuardOnPublicMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsPublicGuardOnPrivateMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsPublicGuardOnPublicMethod
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsPublicGuardZeroArgForm
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsRegexpWithPlainString
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsRegexpWithRegexPattern
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsResourceVariableGracefulDegradation
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsResourceVariableWithNullBinding
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsSingleCharacterWithMultipleChars
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsSingleCharacterWithOneChar
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsStaticFallbackWithoutBindings
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsStaticOnMethodNameWithBindings
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsStaticOnNonStaticMethodName
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsStringLiteralNegative
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsStringLiteralNoArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testIsStringLiteralPositive
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testMethodNameMatchesExactName
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testMethodNameMatchesInsufficientArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testMethodNameMatchesNoMatch
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testMethodNameMatchesWithTestPrefix
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testNewGuardsRegistered
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testOtherwiseGuardAlwaysTrue
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testParamCountMatches
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testParamCountNoArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testParamCountZero
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testParentMatchesGuard
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testSubtypeOfGuardGracefulDegradation
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testSubtypeOfGuardInsufficientArgs
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testSubtypeOfGuardNullBinding
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testThrowsExceptionGuardNoThrowsClause
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testThrowsExceptionGuardWithMatchingType
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testThrowsExceptionGuardWithNonMatchingType
org.sandbox.jdt.triggerpattern.test.BuiltInGuardsTest ‑ testThrowsExceptionGuardZeroArgAnyThrows
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testAllBundledLibrariesHaveMetadata
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testBundledLibraryCount
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testHintFileRegistryLoadBundled
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadArraysLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadClassfileApiLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadCollectionPerformanceLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadCollectionToarrayLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadCollectionsLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadDeprecationsLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadIoPerformanceLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadMiscLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadModernizeJava11Library
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadModernizeJava9Library
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadNumberCompareLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadOptionalModernizationLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadPerformanceLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadPlatformLoggingLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadProbableBugsLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadSerializationLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadStreamPerformanceLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadStringBufferToStringBuilderLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadStringEqualsLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadStringIsblankLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadStringModernizationLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadTryWithResourcesLibrary
org.sandbox.jdt.triggerpattern.test.BundledLibrariesTest ‑ testLoadTypeInferenceLibrary
org.sandbox.jdt.triggerpattern.test.CleanUpResultTest ‑ testAddFinding
org.sandbox.jdt.triggerpattern.test.CleanUpResultTest ‑ testEmptyResult
org.sandbox.jdt.triggerpattern.test.CleanUpResultTest ‑ testFindingsListIsModifiable
org.sandbox.jdt.triggerpattern.test.CleanUpResultTest ‑ testMultipleFindings
org.sandbox.jdt.triggerpattern.test.CleanUpResultTest ‑ testOperationsSetIsModifiable
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHistoryEmpty
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHistoryMalformedRecord
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHistoryMultipleCommits
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHistoryNull
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHistorySingleCommit
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHunkContextLinesIncluded
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHunksEmpty
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHunksMultipleHunks
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHunksNull
org.sandbox.jdt.triggerpattern.test.CommandLineGitProviderTest ‑ testParseHunksSingleHunk
org.sandbox.jdt.triggerpattern.test.CommitAnalysisResultTest ‑ testAllAnalysisStatusValues
org.sandbox.jdt.triggerpattern.test.CommitAnalysisResultTest ‑ testCommitInfoRecord
org.sandbox.jdt.triggerpattern.test.CommitAnalysisResultTest ‑ testDoneStatusWithRules
org.sandbox.jdt.triggerpattern.test.CommitAnalysisResultTest ‑ testFailedStatus
org.sandbox.jdt.triggerpattern.test.CommitAnalysisResultTest ‑ testNoRulesStatus
org.sandbox.jdt.triggerpattern.test.CommitAnalysisResultTest ‑ testPendingStatus
org.sandbox.jdt.triggerpattern.test.ConfidenceCalculatorTest ‑ testAllIdenticalYieldsHighConfidence
org.sandbox.jdt.triggerpattern.test.ConfidenceCalculatorTest ‑ testEmptyDiffYieldsZero
org.sandbox.jdt.triggerpattern.test.ConfidenceCalculatorTest ‑ testIncompatibleWithInsertionsYieldsLow
org.sandbox.jdt.triggerpattern.test.ConfidenceCalculatorTest ‑ testMixedAlignments
org.sandbox.jdt.triggerpattern.test.DiffHunkRefinerTest ‑ testCodeChangePairHasLineNumber
org.sandbox.jdt.triggerpattern.test.DiffHunkRefinerTest ‑ testEmptyHunksProduceEmptyResult
org.sandbox.jdt.triggerpattern.test.DiffHunkRefinerTest ‑ testMultipleHunksProcessed
org.sandbox.jdt.triggerpattern.test.DiffHunkRefinerTest ‑ testNonJavaFileSkipped
org.sandbox.jdt.triggerpattern.test.DiffHunkRefinerTest ‑ testNullContentProducesEmptyResult
org.sandbox.jdt.triggerpattern.test.DiffHunkRefinerTest ‑ testRefineMethodCallChange
org.sandbox.jdt.triggerpattern.test.DiffHunkRefinerTest ‑ testRefineSimpleStatementChange
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testAnalyzeHintOnlyRule
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testAnalyzeMultipleMatches
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testAnalyzeNoMatch
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testAnalyzeSimpleExpression
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testEmptyInput
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testJsonEscaping
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testReportEntryHasReplacement
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testToCsv
org.sandbox.jdt.triggerpattern.test.DryRunReporterTest ‑ testToJson
org.sandbox.jdt.triggerpattern.test.EmbeddedFixExecutorTest ‑ testExecuteStubDoesNotThrow
org.sandbox.jdt.triggerpattern.test.EmbeddedFixExecutorTest ‑ testFixFunctionIsRegistered
org.sandbox.jdt.triggerpattern.test.EmbeddedFixExecutorTest ‑ testHasFixReturnsFalseForUnknown
org.sandbox.jdt.triggerpattern.test.EmbeddedFixExecutorTest ‑ testNonAnnotatedMethodNotRegistered
org.sandbox.jdt.triggerpattern.test.EmbeddedFixExecutorTest ‑ testUnregisterRemovesFixes
org.sandbox.jdt.triggerpattern.test.EmbeddedFixFunctionTest ‑ testDebugCompileOverload
org.sandbox.jdt.triggerpattern.test.EmbeddedFixFunctionTest ‑ testExtractFixMethods
org.sandbox.jdt.triggerpattern.test.EmbeddedFixFunctionTest ‑ testFixMethodMustReturnVoid
org.sandbox.jdt.triggerpattern.test.EmbeddedFixFunctionTest ‑ testGuardAndFixMethodsSeparated
org.sandbox.jdt.triggerpattern.test.EmbeddedFixFunctionTest ‑ testNoFixMethodsInEmptyBlock
org.sandbox.jdt.triggerpattern.test.EmbeddedFixFunctionTest ‑ testVoidMethodWithoutAnnotationIsNotFix
org.sandbox.jdt.triggerpattern.test.EmbeddedGuardRegistrarTest ‑ testBuiltInGuardNotOverridden
org.sandbox.jdt.triggerpattern.test.EmbeddedGuardRegistrarTest ‑ testGuardMethodIsRegistered
org.sandbox.jdt.triggerpattern.test.EmbeddedGuardRegistrarTest ‑ testNonBooleanMethodNotRegistered
org.sandbox.jdt.triggerpattern.test.EmbeddedGuardRegistrarTest ‑ testRegisteredGuardReturnsTrueAsStub
org.sandbox.jdt.triggerpattern.test.EmbeddedGuardRegistrarTest ‑ testUnregisterGuardsRemovesOnlySpecificRuleId
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testCompileEmptyBlock
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testCompileMultipleMethods
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testCompileNullRuleId
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testCompileSimpleGuardMethod
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testCompileWithSyntaxError
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testLineMappingsHintLinesAreCorrect
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testLineMappingsPresent
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testSourceLineMappingRecord
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testSyntheticClassName
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testToHintLine
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testToHintLineNotFound
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testToSyntheticLine
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaCompilerTest ‑ testToSyntheticLineNotFound
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testClear
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testEmptyBindings
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testEmptyLogger
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testLogExecutionFailure
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testLogFixExecution
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testLogGuardExecution
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testSuccessAndFailureCounts
org.sandbox.jdt.triggerpattern.test.EmbeddedJavaExecutionLoggerTest ‑ testTracesAreUnmodifiable
org.sandbox.jdt.triggerpattern.test.ExtensionPointLoadingTest ‑ testGuardRegistryBuiltinsPresent
org.sandbox.jdt.triggerpattern.test.ExtensionPointLoadingTest ‑ testGuardRegistryLoadExtensionsReturnsEmptyWithoutOSGi
org.sandbox.jdt.triggerpattern.test.ExtensionPointLoadingTest ‑ testGuardRegistryManualRegistrationStillWorks
org.sandbox.jdt.triggerpattern.test.ExtensionPointLoadingTest ‑ testHintFileRegistryLoadFromExtensionsReturnsEmptyWithoutOSGi
org.sandbox.jdt.triggerpattern.test.ExtensionPointLoadingTest ‑ testHintFileRegistryManualRegistrationStillWorks
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testCustomGuardRegistration
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateCombinedExpression
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateElementKindMatchesMethod
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateMatchesAny
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateMatchesAnyWithLiterals
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateMatchesNone
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateMatchesNoneWithLiterals
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateNotExpression
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateOrExpression
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateReferencedIn
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateReferencedInFalse
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateSourceVersionBetween
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateSourceVersionGE
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateSourceVersionGEFalse
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateSourceVersionGEOldStyleJava8
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testEvaluateSourceVersionLE
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testGuardRegistryGet
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseAnd
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseContainsGuard
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseElementKindMatches
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseEmptyThrows
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseInstanceOf
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseInstanceOfArray
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseMatchesAnyWithLiterals
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseMatchesNoneWithLiterals
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseMultipleArgs
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseNot
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseNotContainsGuard
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseOr
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseParentheses
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseReferencedIn
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseSimpleFunctionCall
org.sandbox.jdt.triggerpattern.test.GuardExpressionTest ‑ testParseUnterminatedStringLiteral
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testBundledLibrariesLoad
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testEmptyRegistryProducesNoResults
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testHintOnlyRulesNoReplacement
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testHintOnlyRulesProduceHintFindings
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testIncludedRulesProcessed
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testMultipleRegisteredFilesProduceResults
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testRegistryProducesTransformationResults
org.sandbox.jdt.triggerpattern.test.HintFileCleanUpBridgeTest ‑ testRulesWithImportDirectives
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testArrowOnOwnLineSimpleRule
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testArrowOnOwnLineWithReplacementOnNextLine
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testArrowOnSameLineStillWorks
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testAutoDetectAddImportFromFqnInReplacement
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testBareArrowWithNoReplacementThrowsError
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testBlankPerRuleIdThrows
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testCompleteFileWithMultipleFeatures
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testCustomCodeBlockWithRulesAfter
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testDefaultSeverity
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testDefaultSeverityIsInfo
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testEmbeddedJavaBlockOffsets
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testErrorEmptyContent
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testErrorInvalidMetadata
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testErrorMissingTerminator
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testForeachErrorEmptyEntries
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testForeachErrorMissingArrow
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testForeachExpandsRules
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testForeachMixedWithNonForeachRules
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testForeachWithAllSixCharsets
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testForeachWithConstructor
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testForeachWithMultipleTemplates
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testFqnInferenceNoImportForSharedTypes
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testFqnInferenceRemoveImportFromSourceDiff
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testInvalidPerRuleSeverity
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMapErrorEmptyEntries
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMapErrorMissingArrow
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMapExpandsRules
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMapMixedWithNonMapRules
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMapWithMultipleEntries
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMetadataColonFormatPreferredOverEquals
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMethodDeclarationPatternKindInference
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMethodDeclarationWithReturnTypeInference
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMultiLineDescriptionMetadata
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMultiLineDescriptionThreeLines
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMultilineReplacement
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMultilineReplacementDoesNotBreakMultiRewrite
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMultilineReplacementWithInlineArrow
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMultipleAnnotationRulesNaturalSyntax
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testMultipleCustomCodeBlocksOnSingleLine
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testNaturalSyntaxWithSetUpMethod
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testNetBeansDescriptionEqualsFormat
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testNetBeansMetadataEqualsFormatWithoutQuotes
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testNetBeansMixedFormatMetadata
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testOtherwiseAsGuardKeyword
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseAnnotationPattern
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseAnnotationRuleWithFqnInference
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseAnnotations5FqnFile
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseArgsCountGuard
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseAssertThatHamcrestFqnRule
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseBitwiseAndInPattern
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseBitwiseOperatorWithGuard
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseBitwiseOrInPattern
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseBlockPattern
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseConstructorPattern
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseDisplayGetDefaultHintOnlyRule
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseEclipsePlatformUiMinedHintFile
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseEmbeddedFixFunctionReference
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseEmbeddedJavaBlockWithMetadata
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseFileToPathMigrationRule
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseGenericTypeIsGuard
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseHintOnlyRule
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseIPathDeprecationRule
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseImportPattern
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseMetadata
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseMultiLineEmbeddedJavaBlock
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseMultipleEmbeddedJavaBlocks
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseMultipleReplaceStaticImportInferred
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseMultipleRules
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseNoEmbeddedJavaBlocks
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseNonEmbeddedFixIsNotDetected
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseReplaceStaticImportInferred
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseRuleWithGuard
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseRuleWithMultiRewrite
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseSeverityDirective
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseSeverityDirectiveWarning
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseSimpleRule
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseSingleLineEmbeddedJavaBlock
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseStatementPattern
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseSuppressWarningsDirective
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseSuppressWarningsMultipleKeys
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseTreeKindDirective
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseTreeKindEmptyValue
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseTreeKindInvalidNodeType
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseTreeKindSingleValue
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseWithBlockComments
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testParseWithLineComments
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testPerRuleIdAndSeverityCombined
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testPerRuleIdAnnotation
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testPerRuleIdWithDescriptionPrefix
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testPerRuleSeverityAnnotation
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testRuleWithoutIdHasNullRuleId
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testSkipCustomCodeBlockMultiLine
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testSkipCustomCodeBlockSingleLine
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testSkipMultipleCustomCodeBlocks
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testStaticGuardInMethodDeclaration
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testTreeKindDefaultEmpty
org.sandbox.jdt.triggerpattern.test.HintFileParserTest ‑ testUnclosedCustomCodeBlock
org.sandbox.jdt.triggerpattern.test.HintFileRegistryInferredTest ‑ testGetInferredHintFilesEmpty
org.sandbox.jdt.triggerpattern.test.HintFileRegistryInferredTest ‑ testPromoteToManual
org.sandbox.jdt.triggerpattern.test.HintFileRegistryInferredTest ‑ testRegisterInferredRules
org.sandbox.jdt.triggerpattern.test.HintFileRegistryInferredTest ‑ testRegisterSetsTagsWhenEmpty
org.sandbox.jdt.triggerpattern.test.HintFileRegistryInferredTest ‑ testRuleInferenceEngineToHintFile
org.sandbox.jdt.triggerpattern.test.ImportDiffAnalyzerTest ‑ testAddedAndRemovedImportsDetected
org.sandbox.jdt.triggerpattern.test.ImportDiffAnalyzerTest ‑ testAddedImportDetected
org.sandbox.jdt.triggerpattern.test.ImportDiffAnalyzerTest ‑ testNoImportChangesReturnsNull
org.sandbox.jdt.triggerpattern.test.ImportDiffAnalyzerTest ‑ testRemovedImportDetected
org.sandbox.jdt.triggerpattern.test.ImportDiffAnalyzerTest ‑ testStaticImportChangesDetected
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectFromPatternEmpty
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectFromPatternNull
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectFromPatternWithFqn
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectFromPatternWithMultipleFqns
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectFromPatternWithoutFqn
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectRemovedTypesBasic
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectRemovedTypesEmptyAlternatives
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectRemovedTypesNoChange
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectRemovedTypesNoFqnInSource
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectRemovedTypesNullAlternatives
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testDetectRemovedTypesNullSource
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testInferFromFqnPatternsAddAndRemove
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testInferFromFqnPatternsAnnotationStyle
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testInferFromFqnPatternsEmptyReplacements
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testInferFromFqnPatternsNoFqns
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testInferFromFqnPatternsNullReplacements
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testInferFromFqnPatternsOnlyReplacement
org.sandbox.jdt.triggerpattern.test.ImportDirectiveTest ‑ testInferFromFqnPatternsReplaceStaticImport
org.sandbox.jdt.triggerpattern.test.InferredRuleValidatorTest ‑ testLowConfidenceRejected
org.sandbox.jdt.triggerpattern.test.InferredRuleValidatorTest ‑ testPlaceholderInBothSourceAndReplacementAccepted
org.sandbox.jdt.triggerpattern.test.InferredRuleValidatorTest ‑ testPlaceholderInReplacementNotInSourceRejected
org.sandbox.jdt.triggerpattern.test.InferredRuleValidatorTest ‑ testValidRulePassesValidation
org.sandbox.jdt.triggerpattern.test.InferredRuleValidatorTest ‑ testValidationResultHasMessage
org.sandbox.jdt.triggerpattern.test.MultiPlaceholderTest ‑ testMultiPlaceholderConsistencyCheck
org.sandbox.jdt.triggerpattern.test.MultiPlaceholderTest ‑ testMultiPlaceholderMatchesMultipleArguments
org.sandbox.jdt.triggerpattern.test.MultiPlaceholderTest ‑ testMultiPlaceholderMatchesOneArgument
org.sandbox.jdt.triggerpattern.test.MultiPlaceholderTest ‑ testMultiPlaceholderMatchesVariousArgumentTypes
org.sandbox.jdt.triggerpattern.test.MultiPlaceholderTest ‑ testMultiPlaceholderMatchesZeroArguments
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testAutoBindingDollarThis
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testAutoBindingDollarUnderscore
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testConstraintVariableTypeAnnotation
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testEnhancedHintAnnotation
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFindMatchesByNodeType
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFindMatchesByNodeTypeMultipleTypes
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFindMatchesByNodeTypeNoMatches
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFixUtilitiesConstructorReplacement
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFixUtilitiesDeterminePatternKind
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFixUtilitiesEmbeddedPlaceholderReplacement
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFixUtilitiesInvalidReplacementPattern
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testFixUtilitiesSimplePlaceholderReplacement
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testHintContextCancel
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testHintContextGetVariableNames
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testHintContextGetVariables
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testHintKindEnum
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testSeverityEnum
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testTriggerPatternsAnnotation
org.sandbox.jdt.triggerpattern.test.NetBeansParityTest ‑ testTriggerTreeKindAnnotation
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testAnnotationWithParameters
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintAbstractMethod_Negated
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintEmptyMethod
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintMethodCallInBody
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintMultipleMethods
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintNegative_MissingSuperCall
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintNegative_SuperCallPresent
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintPositive_SuperCallMissing
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintPositive_SuperCallPresent
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testBodyConstraintSuperCallInNestedBlock
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testFieldWithAnnotation
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testFieldWithPlaceholderType
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMethodCallWithMultipleArguments
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMethodCallWithPlaceholderQualifier
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMethodDeclarationWithMultiPlaceholderParameters
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMethodDeclarationWithParameters
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMethodDeclarationWithPlaceholderName
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMethodDeclarationWithReturnType
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMethodDeclarationWithoutOverrideConstraint
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMultipleAnnotationsOnSameElement
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testMultipleImports
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testOverrideConstraint_NoBindings
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testSimpleField
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testSimpleImport
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testSimpleMarkerAnnotation
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testSimpleMethodCall
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testSimpleMethodDeclaration
org.sandbox.jdt.triggerpattern.test.NewPatternKindsTest ‑ testStaticImport
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testAddIncludeIgnoresBlank
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testHintFileDefaultIncludesEmpty
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testIncludeWithOtherMetadata
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testNoIncludesReturnsOwnRules
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testParseIncludeDirective
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testParseMultipleIncludes
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testResolveIncludesByDeclaredIdNotRegistryKey
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testResolveIncludesCircularReference
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testResolveIncludesMergesRules
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testResolveIncludesMissingReference
org.sandbox.jdt.triggerpattern.test.PatternCompositionTest ‑ testResolveIncludesTransitive
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testEmptyIndex
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testFindAllMatchesMixedKinds
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testFindAllMatchesMultiplePatterns
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testFindAllMatchesMultipleSamePatternMatches
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testFindAllMatchesNoMatch
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testFindAllMatchesNullCu
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testFindAllMatchesSinglePattern
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testIndexGroupsByKind
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testMatchBindings
org.sandbox.jdt.triggerpattern.test.PatternIndexTest ‑ testMultipleRulesSameKind
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParseConstructorWithComplexArguments
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParseConstructorWithPlaceholders
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParseConstructorWithoutArguments
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParseIfStatement
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParseMethodInvocation
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParsePlaceholderExpression
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParseReturnStatement
org.sandbox.jdt.triggerpattern.test.PatternParserTest ‑ testParseSimpleExpression
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testHintFileRegistryBundledLibraryNames
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testHintFileRegistryGetAll
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testHintFileRegistryLoadFromString
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testHintFileRegistryUnregister
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testImportDirectiveAddAndRemove
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testImportDirectiveConstructorWithLists
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testImportDirectiveDetectFromPattern
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testImportDirectiveDetectFromPatternNoFqn
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testImportDirectiveEmpty
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testImportDirectiveMerge
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testParseRuleAutoDetectsImports
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testParseRuleWithFqnBasedStaticImportInference
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testParseRuleWithFqnInference
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testPreviewFormat
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testPreviewGeneratorFromRule
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testPreviewGeneratorHintOnly
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testPreviewGeneratorMultiplePlaceholders
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testPreviewGeneratorSimple
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testPreviewGeneratorVariadicPlaceholder
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testTransformationRuleWithImports
org.sandbox.jdt.triggerpattern.test.Phase6FeaturesTest ‑ testTransformationRuleWithoutImports
org.sandbox.jdt.triggerpattern.test.PlaceholderGeneralizerTest ‑ testGeneralizeConstructorRewrite
org.sandbox.jdt.triggerpattern.test.PlaceholderGeneralizerTest ‑ testGeneralizeReturnsNullForEmptyDiff
org.sandbox.jdt.triggerpattern.test.PlaceholderGeneralizerTest ‑ testGeneralizeSimpleApiReplacement
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testBitwiseAndWithPlaceholders
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testBitwiseOrDoesNotMatchDifferentOperator
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testBitwiseOrWithConcreteQualifiedNames
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testBitwiseOrWithPlaceholders
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testBitwiseXorWithPlaceholders
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testChainedBitwiseOrWithPlaceholders
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testDifferentPlaceholdersBindIndependently
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testMultipleSamePlaceholdersMustMatch
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testNonPlaceholderMustMatchExactly
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testPlaceholderBinds
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testShiftLeftWithPlaceholders
org.sandbox.jdt.triggerpattern.test.PlaceholderMatcherTest ‑ testShiftRightWithPlaceholders
org.sandbox.jdt.triggerpattern.test.RuleGrouperTest ‑ testAggregatedConfidenceBoostForMultipleOccurrences
org.sandbox.jdt.triggerpattern.test.RuleGrouperTest ‑ testDifferentRulesGroupedSeparately
org.sandbox.jdt.triggerpattern.test.RuleGrouperTest ‑ testEmptyInputReturnsEmptyGroups
org.sandbox.jdt.triggerpattern.test.RuleGrouperTest ‑ testSingleRuleGroupedAlone
org.sandbox.jdt.triggerpattern.test.RuleGrouperTest ‑ testThreeSimilarRulesGroupedTogether
org.sandbox.jdt.triggerpattern.test.RuleInferenceEngineTest ‑ testInferConstructorRewrite
org.sandbox.jdt.triggerpattern.test.RuleInferenceEngineTest ‑ testInferFromCodeChangePair
org.sandbox.jdt.triggerpattern.test.RuleInferenceEngineTest ‑ testInferMethodCallRewrite
org.sandbox.jdt.triggerpattern.test.RuleInferenceEngineTest ‑ testToHintFile
org.sandbox.jdt.triggerpattern.test.RuleInferenceEngineTest ‑ testToHintFileString
org.sandbox.jdt.triggerpattern.test.RuleInferenceEngineTest ‑ testToTransformationRule
org.sandbox.jdt.triggerpattern.test.SandboxHintOrganizeImportsTest ‑ testBlockWithNoImports
org.sandbox.jdt.triggerpattern.test.SandboxHintOrganizeImportsTest ‑ testDuplicateImportsRemoved
org.sandbox.jdt.triggerpattern.test.SandboxHintOrganizeImportsTest ‑ testImportsAreSorted
org.sandbox.jdt.triggerpattern.test.SandboxHintOrganizeImportsTest ‑ testImportsOutsideBlockNotChanged
org.sandbox.jdt.triggerpattern.test.SandboxHintOrganizeImportsTest ‑ testNoEditsWhenAlreadyOrganized
org.sandbox.jdt.triggerpattern.test.SandboxHintOrganizeImportsTest ‑ testNullDocumentReturnsNull
org.sandbox.jdt.triggerpattern.test.SandboxHintRenameParticipantTest ‑ testCommentReferencesNotRenamed
org.sandbox.jdt.triggerpattern.test.SandboxHintRenameParticipantTest ‑ testMultipleReferencesRenamed
org.sandbox.jdt.triggerpattern.test.SandboxHintRenameParticipantTest ‑ testNoChangesWhenNoReferences
org.sandbox.jdt.triggerpattern.test.SandboxHintRenameParticipantTest ‑ testNullDocumentReturnsNull
org.sandbox.jdt.triggerpattern.test.SandboxHintRenameParticipantTest ‑ testRenameGuardReference
org.sandbox.jdt.triggerpattern.test.SandboxHintRenameParticipantTest ‑ testSameNameReturnsNull
org.sandbox.jdt.triggerpattern.test.SandboxHintSourceLocatorTest ‑ testLaunchConfigurationTypeId
org.sandbox.jdt.triggerpattern.test.SandboxHintSourceLocatorTest ‑ testSourceLocatorCanBeInstantiated
org.sandbox.jdt.triggerpattern.test.SandboxHintSourceLocatorTest ‑ testSourceLocatorReturnsNullForNullFrame
org.sandbox.jdt.triggerpattern.test.SandboxHintSourceLocatorTest ‑ testSourcePathComputerCanBeInstantiated
org.sandbox.jdt.triggerpattern.test.SandboxHintTemplateStoreTest ‑ testContextTypeIdNotEmpty
org.sandbox.jdt.triggerpattern.test.SandboxHintTemplateStoreTest ‑ testFixTemplateContainsFixFunctionAnnotation
org.sandbox.jdt.triggerpattern.test.SandboxHintTemplateStoreTest ‑ testFourTemplatesExist
org.sandbox.jdt.triggerpattern.test.SandboxHintTemplateStoreTest ‑ testGetTemplatesReturnsCopy
org.sandbox.jdt.triggerpattern.test.SandboxHintTemplateStoreTest ‑ testGuardTemplateContainsExpectedContent
org.sandbox.jdt.triggerpattern.test.SandboxHintTemplateStoreTest ‑ testTemplateNamesPresent
org.sandbox.jdt.triggerpattern.test.SandboxHintTemplateStoreTest ‑ testTemplatesNotNull
org.sandbox.jdt.triggerpattern.test.StatementSequenceTest ‑ testCombinationWithVariadicPlaceholders

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test Results

2779 tests found (test 2227 to 2779)

There are 2779 tests, see "Raw output" for the list of tests 2227 to 2779.
Raw output
org.sandbox.jdt.triggerpattern.test.StatementSequenceTest ‑ testMatchSpansCorrectOffsetLength
org.sandbox.jdt.triggerpattern.test.StatementSequenceTest ‑ testMultipleMatchesInSameBlock
org.sandbox.jdt.triggerpattern.test.StatementSequenceTest ‑ testNoMatchForNonConsecutive
org.sandbox.jdt.triggerpattern.test.StatementSequenceTest ‑ testSequenceInMultipleMethods
org.sandbox.jdt.triggerpattern.test.StatementSequenceTest ‑ testSequenceWithinLargerBlock
org.sandbox.jdt.triggerpattern.test.StatementSequenceTest ‑ testTwoConsecutiveStatements
org.sandbox.jdt.triggerpattern.test.TransformationReporterTest ‑ testCsvReportContainsCorrectFields
org.sandbox.jdt.triggerpattern.test.TransformationReporterTest ‑ testEmptyResults
org.sandbox.jdt.triggerpattern.test.TransformationReporterTest ‑ testGenerateCsvReport
org.sandbox.jdt.triggerpattern.test.TransformationReporterTest ‑ testGenerateJsonReport
org.sandbox.jdt.triggerpattern.test.TransformationReporterTest ‑ testJsonReportContainsCorrectFields
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testHintOnlyRule
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testNoAlternativeMatches
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testOtherwiseAlternative
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testRuleWithSourceGuard
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testSimpleRuleWithOneAlternative
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testTransformationRuleDefaultSeverityNull
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testTransformationRuleWithSeverity
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testTwoAlternativesFirstMatches
org.sandbox.jdt.triggerpattern.test.TransformationRuleTest ‑ testTwoAlternativesSecondMatches
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testConstructorPatternNoArgs
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testConstructorPatternWithPlaceholders
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFindMatchesByNodeType
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFindMultipleMatches
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFindSingleMatch
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnConstructorPatternDoesNotMatchWithoutImport
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnConstructorPatternDoesNotMatchWrongImport
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnConstructorPatternMatchesFqnUsage
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnConstructorPatternMatchesSimpleNameWithImport
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnPatternAlsoMatchesFqnUsage
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnPatternDoesNotMatchSimpleNameWithWrongImport
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnPatternDoesNotMatchSimpleNameWithoutImport
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testFqnPatternMatchesSimpleNameUsage
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testJavaLangConstructorMatchesWithoutImport
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testMultipleSamePlaceholder
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testNoMatchesFound
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testPatternConstraintsProperty
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testSimpleNamePatternDoesNotMatchFqnUsage
org.sandbox.jdt.triggerpattern.test.TriggerPatternEngineTest ‑ testStatementPattern
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testBlockPatternEmptyBeforeReturn
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testBlockPatternMatchesAllStatements
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testBlockPatternMatchesEmptyBlock
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testBlockPatternNoReturn
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testBlockPatternParserCreatesBlock
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testBlockPatternStatementsBeforeReturn
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testEngineFindsBlockPatternMatches
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testEngineMixedArgPattern
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testExistingMultiPlaceholderStillWorks
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testExistingMultiPlaceholderZeroArgs
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testMixedPatternFirstAndLastSeparate
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testMixedPatternFirstArgSeparateEmptyRest
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testMixedPatternFirstArgSeparateRestInList
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testMixedPatternLastArgSeparate
org.sandbox.jdt.triggerpattern.test.VariadicPlaceholderTest ‑ testMixedPatternNotEnoughArgs
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testClearRemovesProjectHintFiles
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testInvalidateProjectAllowsRescan
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testLoadProjectHintFilesWithNullProject
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testMultipleProjectHintFiles
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testProjectHintFileIncludesComposition
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testProjectHintFilesCoexistWithBundled
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testProjectScopedIdConvention
org.sandbox.jdt.triggerpattern.test.WorkspaceHintFileTest ‑ testUnregisterProjectHintFile
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testContentProviderGetElements
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testContentProviderWithIJavaElementVsIResource
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testDetectDuplicateVariableNamesWithDifferentTypes
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testGetIntermediateTypesForArrayList
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testNamingConflictFilterDetectsConflicts
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testNamingConflictFilterNoConflicts
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testVarVisitorMultipleDeclarations
org.sandbox.jdt.ui.helper.views.JavaHelperViewTest ‑ testVariableBindingVisitorBasicFunctionality
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testAncestorNavigation
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testAssignmentByOperator
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testBasicChaining
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testCatchClauseByExceptionType
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testClassInstanceCreationWithTypeAndNavigate
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testFieldDeclarationByType
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testForStatementWithTypeFilter
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testHierarchicalSearch
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testInfixExpressionByOperator
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testMethodDeclarationByName
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testMethodInvocationFiltering
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testSingleVisitor
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testSuperMethodInvocationByName
org.sandbox.jdt.ui.tests.quickfix.ASTProcessorTest ‑ testTypeDeclarationByName
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testComplexPipeline
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testGetAST
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderCollect_ToList
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderCollect_ToSet
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderCount
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderDirectForEach_Array_FallbackToStream
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderDirectForEach_Collection
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderDirectForEach_Iterable
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderDistinct
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderFilter
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderFind_Any
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderFind_First
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderFlatMap
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderForEach_MultipleStatements
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderForEach_Ordered
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderForEach_SingleStatement
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderLimit
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderMap
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderMatch_AllMatch
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderMatch_AnyMatch
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderMatch_NoneMatch
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderPeek
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderReduce_WithIdentity
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderReduce_WithoutIdentity
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSkip
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSorted_NoComparator
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSorted_WithComparator
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSource_Array
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSource_Collection
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSource_ExplicitRange
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSource_ExplicitRangeWithVariables
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSource_IntRange
org.sandbox.jdt.ui.tests.quickfix.ASTStreamRendererTest ‑ testRenderSource_Iterable
org.sandbox.jdt.ui.tests.quickfix.AdvancedVisitorPatternsTest ‑ testCombiningVisitorsWithAnd
org.sandbox.jdt.ui.tests.quickfix.AdvancedVisitorPatternsTest ‑ testCombiningVisitorsWithOr
org.sandbox.jdt.ui.tests.quickfix.AdvancedVisitorPatternsTest ‑ testCoordinatedMultiPhaseProcessing
org.sandbox.jdt.ui.tests.quickfix.AdvancedVisitorPatternsTest ‑ testDynamicVisitorRemoval
org.sandbox.jdt.ui.tests.quickfix.AdvancedVisitorPatternsTest ‑ testNegateFilter
org.sandbox.jdt.ui.tests.quickfix.AdvancedVisitorPatternsTest ‑ testStatefulVisitorBehavior
org.sandbox.jdt.ui.tests.quickfix.AdvancedVisitorPatternsTest ‑ testTrackingProcessedNodes
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testBasicMethodReference
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testLambdaExpression
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testMethodNameFiltering
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testMethodNameFilteringTraditional
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testMultipleNodeTypes
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testSkipChildNodes
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testTraditionalVisitorApproach
org.sandbox.jdt.ui.tests.quickfix.BasicVisitorUsageTest ‑ testVisitEndCallback
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testChainedVisitorWithoutFirstMatchBug
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testDeeplyNestedClassInstanceCreation
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testFindAllClassInstanceCreationInMethod
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testFindClassInstanceCreationInAnonymousClasses
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testFindClassInstanceCreationInLambdas
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testFindClassInstanceCreationInNestedBlocks
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testFindClassInstanceCreationWithTypeFilter
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testFindStandaloneClassInstanceCreation
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testJFacePluginPattern
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testMultipleBlocksWithSeparateInstances
org.sandbox.jdt.ui.tests.quickfix.ClassInstanceCreationVisitorTest ‑ testScopeFunctionBehavior
org.sandbox.jdt.ui.tests.quickfix.DoubleCheckLockingTest ‑ testClassicDoubleCheckedLocking
org.sandbox.jdt.ui.tests.quickfix.DoubleCheckLockingTest ‑ testDifferentVariablesProduceSeparateBindings
org.sandbox.jdt.ui.tests.quickfix.DoubleCheckLockingTest ‑ testDoubleCheckWithLockObject
org.sandbox.jdt.ui.tests.quickfix.DoubleCheckLockingTest ‑ testDoubleCheckWithThisLock
org.sandbox.jdt.ui.tests.quickfix.DoubleCheckLockingTest ‑ testNoNullChecksNoMatches
org.sandbox.jdt.ui.tests.quickfix.DoubleCheckLockingTest ‑ testSimpleNullCheckSingleMatch
org.sandbox.jdt.ui.tests.quickfix.DoubleCheckLockingTest ‑ testSimpleSynchronizationSingleNullCheck
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testCharsetForNameDeclarativeRewrite
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testCharsetForNameUtf8Pattern
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testDoesNotMatchCharsetObject
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testDoesNotMatchOtherEncodings
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testMultipleEncodingMatches
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testStringConstructorDeclarativeRewrite
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testStringConstructorPlaceholderBinding
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testStringConstructorUtf8Pattern
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testStringGetBytesDeclarativeRewrite
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testStringGetBytesPlaceholderBinding
org.sandbox.jdt.ui.tests.quickfix.EncodingPatternTest ‑ testStringGetBytesUtf8Pattern
org.sandbox.jdt.ui.tests.quickfix.FeatureParityTest ‑ parity_BreakShouldNotConvert
org.sandbox.jdt.ui.tests.quickfix.FeatureParityTest ‑ parity_FilterPattern
org.sandbox.jdt.ui.tests.quickfix.FeatureParityTest ‑ parity_SimpleForEachConversion
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopCollectTest ‑ test_MappedCollectToList
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopCollectTest ‑ test_SimpleCollectToList
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopComplexPatternTest ‑ test_MergingOperations
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopComplexPatternTest ‑ test_NoNeededVariablesMerging
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopComplexPatternTest ‑ test_SomeChainingWithNoNeededVar
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_ChainedFilterAndMapOperations
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_ChainingFilterMapForEachConvert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_ChainingMap
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_ContinueWithMapAndForEach
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_ContinueWithNestedConditions
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_ContinuingIfFilterSingleStatement
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_FilterWithComplexCondition
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_MultipleContinueFilters
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_NestedFilterCombination
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_NonFilteringIfChaining
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopFilterMapTest ‑ test_SmoothLongerChaining
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopMatchPatternTest ‑ test_AllMatchWithNullCheck
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopMatchPatternTest ‑ test_ChainedAllMatch
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopMatchPatternTest ‑ test_ChainedAnyMatch
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopMatchPatternTest ‑ test_ChainedNoneMatch
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopMatchPatternTest ‑ test_SimpleAllMatch
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ Loop adding to iterated collection (list.add) - should NOT convert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ Loop clearing iterated collection (list.clear) - should NOT convert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ Loop modifying external variable (not accumulator pattern) - should NOT convert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ Loop modifying iterated collection (list.remove) - should NOT convert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ Loop returning different values in different branches - should NOT convert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ Loop with both break and continue - should NOT convert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ test_Break_Statement_ShouldNotConvert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ test_EarlyReturn_WithSideEffects_ShouldNotConvert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ test_External_variable_modification_with_side_effects_converts
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ test_Labeled_Continue_ShouldNotConvert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopNegativeTest ‑ test_Throw_Statement_ShouldNotConvert
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_ComplexReductionWithMapping
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_FilterMapReduceChain
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_IncrementReducer
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_LongIncrementReducer
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_MaxReducer
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_MinReducer
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_SimpleReducer
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopReducerTest ‑ test_SumReductionWithFilter
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopSimpleConversionTest ‑ test_BeautificationWorks
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopSimpleConversionTest ‑ test_BeautificationWorks2
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopSimpleConversionTest ‑ test_EmptyCollectionHandling
org.sandbox.jdt.ui.tests.quickfix.FunctionalLoopSimpleConversionTest ‑ test_SimpleForEachConversion
org.sandbox.jdt.ui.tests.quickfix.IteratorLoopConversionTest ‑ testForLoopIterator_forEach
org.sandbox.jdt.ui.tests.quickfix.IteratorLoopConversionTest ‑ testIteratorMultipleNext_notConverted
org.sandbox.jdt.ui.tests.quickfix.IteratorLoopConversionTest ‑ testIteratorWithRemove_notConverted
org.sandbox.jdt.ui.tests.quickfix.IteratorLoopConversionTest ‑ testMultipleStatements_forEach
org.sandbox.jdt.ui.tests.quickfix.IteratorLoopConversionTest ‑ testSimpleWhileIterator_forEach
org.sandbox.jdt.ui.tests.quickfix.IteratorLoopConversionTest ‑ testWithBreak_notYetSupported
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testImageDataProviderCleanup(ImageDataProviderCleanupCases)[1] SimpleImageDataLocal
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testImageDataProviderCleanupDoNotTouch(NOImageDataProviderCleanupCases)[1] ImageDataParameter
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testImageDataProviderCleanupDoNotTouch(NOImageDataProviderCleanupCases)[2] ImageDataUsedMultipleTimes
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testImageDataProviderCleanupDoNotTouch(NOImageDataProviderCleanupCases)[3] ImageDataWithMultipleFragments
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testImageDataProviderMultipleCleanup(ImageDataProviderMultipleCleanupCases)[1] MultipleIndependentImageData
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[10] PrependMainLabelToSubtaskFlag
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[11] BothImportsCoexist
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[12] StandaloneSubProgressMonitor
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[13] StandaloneSubProgressMonitorWithFlags
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[14] SubProgressMonitorOnSubMonitorVariable
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[15] FieldDeclaration
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[16] MethodParameterType
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[17] MethodReturnType
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[18] CastExpression
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[19] NestedConstructorInMethodArgument
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[1] PositiveCase
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[20] ConstructorWithMethodCallArguments
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[2] Twice
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[3] WithFlags
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[4] UniqueVariableName
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[5] IdempotenceAlreadyConverted
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[6] MixedStateOneConvertedOneNot
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[7] NestedInnerClass
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[8] LambdaScenario
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupParametrized(JFaceCleanupCases)[9] SuppressSubtaskLabelFlag
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testJFaceCleanupdonttouch(NOJFaceCleanupCases)[1] NOCase
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testPlatformStatusParametrized(PlatformStatusPatterns)[1] STATUSWARNING3
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testPlatformStatusParametrized(PlatformStatusPatterns)[2] STATUSWARNING4
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testPlatformStatusParametrized(PlatformStatusPatterns)[3] STATUSWARNING5
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testPlatformStatusParametrized(PlatformStatusPatterns)[4] STATUSERROR
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testPlatformStatusParametrized(PlatformStatusPatterns)[5] STATUSINFO
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testPlatformStatusdonttouch
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[10] MultipleTransformations
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[1] BasicViewerSorter
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[2] TreePathViewerSorter
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[3] CommonViewerSorter
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[4] FieldDeclaration
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[5] LocalVariableDeclaration
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[6] MethodReturnType
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[7] MethodParameter
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[8] CastExpression
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testViewerSorterCleanup(ViewerSorterCleanupCases)[9] GetSorterMethodCall
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[1] whileWarningSelf
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[2] whileGenericSubtype
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[3] whileFix
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[4] whileFixTwice
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[5] whileFixNested
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[6] whileFixNested2
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[7] whileWarning
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[8] whileNotRaw
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopParametrized(While2EnhancedForLoop)[9] whileSubtype
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopdonttouch(NOWhile2EnhancedForLoop)[1] whileUsedSpecially
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopdonttouch(NOWhile2EnhancedForLoop)[2] whileRaw
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopdonttouch(NOWhile2EnhancedForLoop)[3] whileWrongType
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopdonttouch(NOWhile2EnhancedForLoop)[4] whileNotIterable
org.sandbox.jdt.ui.tests.quickfix.Java8CleanUpTest ‑ testWhile2enhancedForLoopdonttouch(NOWhile2EnhancedForLoop)[5] whileNotSubtype
org.sandbox.jdt.ui.tests.quickfix.Java9CleanUpTest ‑ testMultiStatusDontTouch(MultiStatusPatternsDontTouch)[1] ALREADY_OK
org.sandbox.jdt.ui.tests.quickfix.Java9CleanUpTest ‑ testMultiStatusParametrized(MultiStatusPatterns)[1] MULTISTATUS_BASIC
org.sandbox.jdt.ui.tests.quickfix.Java9CleanUpTest ‑ testMultiStatusParametrized(MultiStatusPatterns)[2] MULTISTATUS_WITH_CONSTANT
org.sandbox.jdt.ui.tests.quickfix.Java9CleanUpTest ‑ testPlatformStatusParametrized(PlatformStatusPatterns)
org.sandbox.jdt.ui.tests.quickfix.Java9CleanUpTest ‑ testPlatformStatusdonttouch(PlatformStatusPatternsDontTouch)[1] SIMPLE
org.sandbox.jdt.ui.tests.quickfix.MatcherTest ‑ matcherTest
org.sandbox.jdt.ui.tests.quickfix.MethodReuseCleanUpTest ‑ testMethodReuse(MethodReuseScenarios)[1] SIMPLE_INLINE_SEQUENCE
org.sandbox.jdt.ui.tests.quickfix.MethodReuseCleanUpTest ‑ testMethodReuse(MethodReuseScenarios)[2] INLINE_WITH_METHOD_CALLS
org.sandbox.jdt.ui.tests.quickfix.MethodReuseCleanUpTest ‑ testMethodReuse(MethodReuseScenarios)[3] MULTIPLE_VARIABLE_MAPPING
org.sandbox.jdt.ui.tests.quickfix.MissingSuperDisposePluginTest ‑ testContainsSuperDisposeCall_Found
org.sandbox.jdt.ui.tests.quickfix.MissingSuperDisposePluginTest ‑ testContainsSuperDisposeCall_NotFound
org.sandbox.jdt.ui.tests.quickfix.MissingSuperDisposePluginTest ‑ testContainsSuperDisposeCall_NullBody
org.sandbox.jdt.ui.tests.quickfix.MissingSuperDisposePluginTest ‑ testDisposeMethodPatternMatching
org.sandbox.jdt.ui.tests.quickfix.MissingSuperDisposePluginTest ‑ testMissingSuperDisposeCleanup
org.sandbox.jdt.ui.tests.quickfix.ReferenceHolderTest ‑ testCollectingNodePositions
org.sandbox.jdt.ui.tests.quickfix.ReferenceHolderTest ‑ testComplexDataStructures
org.sandbox.jdt.ui.tests.quickfix.ReferenceHolderTest ‑ testCountingNodes
org.sandbox.jdt.ui.tests.quickfix.ReferenceHolderTest ‑ testCountingWithStaticMethod
org.sandbox.jdt.ui.tests.quickfix.ReferenceHolderTest ‑ testLazyInitialization
org.sandbox.jdt.ui.tests.quickfix.ReferenceHolderTest ‑ testSharedDataBetweenCallbacks
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testAllPatternsInRealisticCode
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testBooleanComparisonFalsePattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testBooleanComparisonTruePattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testBothPrefixAndSuffix
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testCollectionSizeCheck
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testComplexExpressions
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testComplexPatternsPrecision
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testComprehensiveComplexPatterns
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testEmptyStringPrefixPattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testEmptyStringSuffixPattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testEqualsEmptyStringPattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testMultipleMatches
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testNoMatchForNonEmptyString
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testObjectsEqualsPattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testRequireNonNullElsePattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testStringBuilderSingleAppend
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testStringFormatSimplification
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testStringLengthCheckPattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testTernaryBooleanFalseTruePattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testTernaryBooleanTrueFalsePattern
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testVariousExpressionTypes
org.sandbox.jdt.ui.tests.quickfix.StringSimplificationTest ‑ testWithMethodInvocation
org.sandbox.jdt.ui.tests.quickfix.VisitorApiDocumentationTest ‑ testApiOverview
org.sandbox.jdt.ui.tests.quickfix.VisitorApiDocumentationTest ‑ testBasicUsagePattern
org.sandbox.jdt.ui.tests.quickfix.VisitorApiDocumentationTest ‑ testCallbackSignatures
org.sandbox.jdt.ui.tests.quickfix.VisitorApiDocumentationTest ‑ testDataSharingPatterns
org.sandbox.jdt.ui.tests.quickfix.VisitorApiDocumentationTest ‑ testStaticHelperMethods
org.sandbox.jdt.ui.tests.quickfix.VisitorApiDocumentationTest ‑ testVisitEndCallbacks
org.sandbox.jdt.ui.tests.quickfix.VisitorApiDocumentationTest ‑ testVisitorRegistration
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testArrayDefensiveCopy
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderDefaultsToNull
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderIsImmutable
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithAnnotationName
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithExceptionType
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithImportName
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithMethodName
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithMultipleFields
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithOperator
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithSuperClassName
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithTypeName
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithTypeof
org.sandbox.jdt.ui.tests.quickfix.VisitorConfigDataTest ‑ testBuilderWithTypeofByName
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testComplexDataCollection
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testDynamicVisitorModification
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testFluentApiWithMethodFiltering
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testFluentApiWithNavigation
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testMethodInvocationByType
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testMultiPhaseProcessing
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testNestedHierarchicalSearch
org.sandbox.jdt.ui.tests.quickfix.VisitorTest ‑ testSimpleFluentApi
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testCommentsPreserved
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testElementsWithContentNotCollapsed
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testEmptyElementsCollapsed
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testEmptyElementsWithAttributesCollapsed
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testEmptyElementsWithWhitespaceCollapsed
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testEmptyLineReduction
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testIdempotency
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testLeadingSpaceToTabConversion
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testLeadingSpacesConvertedToTabs
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testNestedEmptyElementsCollapsed
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testSizeReductionFromCollapsing
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testSizeReductionSignificant
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testSizeReductionWithNoIndent
org.sandbox.jdt.ui.tests.quickfix.XMLCleanupTransformationTest ‑ testTrailingWhitespaceRemoved
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testArbitraryXmlIsNotRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testBuildXmlIsNotRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testExsdExtensionIsRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testFeatureXmlIsRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testFragmentXmlIsRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testGenericXmlExtensionIsNotRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testPDEDirectoryNames
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testPluginXmlIsRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testPomXmlIsNotRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLFileFilteringTest ‑ testXsdExtensionIsRecognized
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testAssertDoesNotThrowOnMatch
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testAssertThrowsOnMismatch
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testAttributeOrderIgnored
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testCommentsConsideredWhenRequested
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testCommentsIgnoredByDefault
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testDifferentAttributeValuesNotEqual
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testDifferentContentNotEqual
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testDifferentElementOrderNotEqual
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testEmptyElementsEqual
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testIdenticalCommentsEqual
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testIdenticalXmlIsEqual
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testInvalidXmlReturnsFalse
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testNestedElementsEqual
org.sandbox.jdt.ui.tests.quickfix.XMLSemanticEqualityTest ‑ testWhitespaceIgnored
org.sandbox.mining.MiningConfigTest ‑ testExtractRepoName
org.sandbox.mining.MiningConfigTest ‑ testHelpReturnsZero
org.sandbox.mining.MiningConfigTest ‑ testMiningReportBasics
org.sandbox.mining.MiningConfigTest ‑ testParseEmptyConfig
org.sandbox.mining.MiningConfigTest ‑ testParseFullConfig
org.sandbox.mining.MiningConfigTest ‑ testParseMinimalConfig
org.sandbox.mining.MiningConfigTest ‑ testParseNullRoot
org.sandbox.mining.SourceScannerTest ‑ testFindJavaFiles
org.sandbox.mining.SourceScannerTest ‑ testFindJavaFilesRespectsLimit
org.sandbox.mining.SourceScannerTest ‑ testFindJavaFilesWithSubPaths
org.sandbox.mining.SourceScannerTest ‑ testJsonReporter
org.sandbox.mining.SourceScannerTest ‑ testMarkdownReporter
org.sandbox.mining.SourceScannerTest ‑ testReportMerge
org.sandbox.mining.SourceScannerTest ‑ testStandaloneAstParser
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testBlankMessageReturnsFalse
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testCaseInsensitiveMatching
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testCustomKeywordsFromFile
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testDefaultFilterMatchesCleanup
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testDefaultFilterMatchesDeprecated
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testDefaultFilterMatchesRefactor
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testDefaultFilterRejectsUnrelatedCommit
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testGetKeywordsNotEmpty
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testNullMessageReturnsFalse
org.sandbox.mining.core.CommitKeywordFilterTest ‑ testRegexPatternMatching
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testEmptyStoreProducesEmptyReport
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testEmptyStoreProducesNoGroups
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testGenerateIssueDescriptors
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testGenerateReport
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testGroupsBitwiseRules
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testGroupsGenericRules
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testGroupsTryWithResourcesRules
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testInferLimitationForOtherCategory
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testSkipsDiscoveredRules
org.sandbox.mining.core.DslEnhancementReporterTest ‑ testSortsByCountDescending
org.sandbox.mining.core.ErrorFeedbackCollectorTest ‑ testCategorizeNullError
org.sandbox.mining.core.ErrorFeedbackCollectorTest ‑ testCollectValidationErrors
org.sandbox.mining.core.ErrorFeedbackCollectorTest ‑ testErrorPatternCategorization
org.sandbox.mining.core.ErrorFeedbackCollectorTest ‑ testFormatFeedbackEmpty
org.sandbox.mining.core.ErrorFeedbackCollectorTest ‑ testFormatFeedbackWithErrors
org.sandbox.mining.core.ErrorFeedbackCollectorTest ‑ testNoErrorsForValidEvals
org.sandbox.mining.core.GithubPagesGeneratorTest ‑ testGenerateCreatesIndexHtml
org.sandbox.mining.core.GithubPagesGeneratorTest ‑ testGenerateDeduplicatesSameCommitHash
org.sandbox.mining.core.GithubPagesGeneratorTest ‑ testGenerateFiltersDemoHashes
org.sandbox.mining.core.GithubPagesGeneratorTest ‑ testGenerateMergesExistingEvaluations
org.sandbox.mining.core.GithubPagesGeneratorTest ‑ testGenerateWithEmptyData
org.sandbox.mining.core.GithubPagesGeneratorTest ‑ testLoadTemplate
org.sandbox.mining.core.HintFileUpdaterTest ‑ testApplyGapsIgnoresNonDslGaps
org.sandbox.mining.core.HintFileUpdaterTest ‑ testApplyGapsSkipsNullRule
org.sandbox.mining.core.HintFileUpdaterTest ‑ testSanitizeFileName
org.sandbox.mining.core.HintFileUpdaterTest ‑ testWriteHintFilesCreatesFileForGreenValid
org.sandbox.mining.core.HintFileUpdaterTest ‑ testWriteHintFilesMultipleEvaluations
org.sandbox.mining.core.HintFileUpdaterTest ‑ testWriteHintFilesSanitizesPathTraversal
org.sandbox.mining.core.HintFileUpdaterTest ‑ testWriteHintFilesSkipsInvalidDsl
org.sandbox.mining.core.HintFileUpdaterTest ‑ testWriteHintFilesSkipsNonGreen
org.sandbox.mining.core.HintFileUpdaterTest ‑ testWriteHintFilesSkipsNullDslRule
org.sandbox.mining.core.HintFileUpdaterTest ‑ testWriteHintFilesUsesTargetHintFile
org.sandbox.mining.core.JsonReporterTest ‑ testWriteEvaluationsAccumulatesAcrossRuns
org.sandbox.mining.core.JsonReporterTest ‑ testWriteEvaluationsCreatesFile
org.sandbox.mining.core.JsonReporterTest ‑ testWriteEvaluationsDeduplicatesByCommitHash
org.sandbox.mining.core.JsonReporterTest ‑ testWriteEvaluationsHandlesEmptyExistingFile
org.sandbox.mining.core.JsonReporterTest ‑ testWriteEvaluationsHandlesInvalidExistingFile
org.sandbox.mining.core.JsonReporterTest ‑ testWriteEvaluationsPreservesOlderOnNewRun
org.sandbox.mining.core.KnownRulesStoreTest ‑ testContainsCommitReturnsFalseForUnknown
org.sandbox.mining.core.KnownRulesStoreTest ‑ testFormatForPromptEmpty
org.sandbox.mining.core.KnownRulesStoreTest ‑ testFormatForPromptWithRules
org.sandbox.mining.core.KnownRulesStoreTest ‑ testGetCommitHashIndex
org.sandbox.mining.core.KnownRulesStoreTest ‑ testLoadFromInvalidJson
org.sandbox.mining.core.KnownRulesStoreTest ‑ testLoadFromNonExistentFile
org.sandbox.mining.core.KnownRulesStoreTest ‑ testNewStoreIsEmpty
org.sandbox.mining.core.KnownRulesStoreTest ‑ testRegisterGreenValidEvaluation
org.sandbox.mining.core.KnownRulesStoreTest ‑ testSaveAndLoad
org.sandbox.mining.core.KnownRulesStoreTest ‑ testSkipsDuplicateCommits
org.sandbox.mining.core.KnownRulesStoreTest ‑ testSkipsEvaluationsWithNullDslRule
org.sandbox.mining.core.KnownRulesStoreTest ‑ testSkipsInvalidDslEvaluations
org.sandbox.mining.core.KnownRulesStoreTest ‑ testSkipsNonGreenEvaluations
org.sandbox.mining.core.MiningCliTest ‑ testCommitListAndKeywordFilterCombined
org.sandbox.mining.core.MiningCliTest ‑ testCommitListFlagParsing
org.sandbox.mining.core.MiningCliTest ‑ testFormatCommitInfoBasic
org.sandbox.mining.core.MiningCliTest ‑ testFormatCommitInfoBranchName
org.sandbox.mining.core.MiningCliTest ‑ testFormatCommitInfoEscapesDoubleQuotesInTitle
org.sandbox.mining.core.MiningCliTest ‑ testFormatCommitInfoMultiLineMessageUsesFirstLineOnly
org.sandbox.mining.core.MiningCliTest ‑ testKeywordFilterFlagParsing
org.sandbox.mining.core.MiningCliTest ‑ testMaxFailureDurationValidationRejectsNegative
org.sandbox.mining.core.MiningCliTest ‑ testMaxFailureDurationValidationRejectsTooSmall
org.sandbox.mining.core.MiningCliTest ‑ testNewFlagsParsing
org.sandbox.mining.core.MiningCliTest ‑ testReadCommitList
org.sandbox.mining.core.MiningCliTest ‑ testReadCommitListEmpty
org.sandbox.mining.core.MiningCliTest ‑ testRepoDirectoryNameNoSuffix
org.sandbox.mining.core.MiningCliTest ‑ testRepoDirectoryNameStripsGitSuffix
org.sandbox.mining.core.MiningCliTest ‑ testResetLearnedLimitsFlagParsing
org.sandbox.mining.core.MiningCliTest ‑ testRetryDeferredFlagParsing
org.sandbox.mining.core.MiningCliTest ‑ testShouldStopElapsed
org.sandbox.mining.core.MiningCliTest ‑ testShouldStopNegativeLimit
org.sandbox.mining.core.MiningCliTest ‑ testShouldStopNoLimit
org.sandbox.mining.core.MiningCliTest ‑ testShouldStopNotElapsed
org.sandbox.mining.core.MiningComparatorTest ‑ testCategoryMismatch
org.sandbox.mining.core.MiningComparatorTest ‑ testDeltaReportEmptyMarkdown
org.sandbox.mining.core.MiningComparatorTest ‑ testDeltaReportFormat
org.sandbox.mining.core.MiningComparatorTest ‑ testDeltaReportJson
org.sandbox.mining.core.MiningComparatorTest ‑ testDeltaReportMarkdownFormat
org.sandbox.mining.core.MiningComparatorTest ‑ testDeltaReportWriteToFiles(Path)
org.sandbox.mining.core.MiningComparatorTest ‑ testDslErrorGuardDetectedAsGuardWissen
org.sandbox.mining.core.MiningComparatorTest ‑ testDslErrorUnknownAsInvalidDslRule
org.sandbox.mining.core.MiningComparatorTest ‑ testDslErrorXmlDetectedAsDslSyntax
org.sandbox.mining.core.MiningComparatorTest ‑ testGapCategorySuggestedAction
org.sandbox.mining.core.MiningComparatorTest ‑ testMarkdownSanitizesMultiLineValues
org.sandbox.mining.core.MiningComparatorTest ‑ testMarkdownTruncatesLongValues
org.sandbox.mining.core.MiningComparatorTest ‑ testMiningMarkedIrrelevantButRefRelevant
org.sandbox.mining.core.MiningComparatorTest ‑ testMissedRelevantCommit
org.sandbox.mining.core.MiningComparatorTest ‑ testMissingDslRule
org.sandbox.mining.core.MiningComparatorTest ‑ testNoGapsWhenResultsMatch
org.sandbox.mining.core.MiningComparatorTest ‑ testWrongTrafficLight
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testDefaultMaxFilesPerCommit
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testDefaultMinDiffLinesPerCommit
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testDiffExtractorAllowsCommitWithinFileLimit
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testDiffExtractorSkipsCommitWithTooManyFiles
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testEpochsDefaultToEmpty
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testMissingFieldsUseDefaults
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testParseAllFilteringFields
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testParseEndDate
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testParseEpochs
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testParseMaxFilesPerCommit
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testParseMinDiffLinesPerCommit
org.sandbox.mining.core.MiningConfigFilteringTest ‑ testSettersRoundTrip
org.sandbox.mining.core.MiningStateTest ‑ testAddDeferredCommitDeduplicatesByHash
org.sandbox.mining.core.MiningStateTest ‑ testAddDeferredCommitSkipsPermanentlySkipped
org.sandbox.mining.core.MiningStateTest ‑ testAtomicSaveCreatesTempFileAndRenames
org.sandbox.mining.core.MiningStateTest ‑ testBackupCreatesBackFile
org.sandbox.mining.core.MiningStateTest ‑ testCategoryHitCountTracking
org.sandbox.mining.core.MiningStateTest ‑ testDeferredCommitCreationAndGetters
org.sandbox.mining.core.MiningStateTest ‑ testEpochRotation
org.sandbox.mining.core.MiningStateTest ‑ testEpochStatePersistence
org.sandbox.mining.core.MiningStateTest ‑ testEpochTrackingDefaults
org.sandbox.mining.core.MiningStateTest ‑ testExhaustedCategoriesAndFocusCategory
org.sandbox.mining.core.MiningStateTest ‑ testGetRepoStateCreatesNewStateIfNotExists
org.sandbox.mining.core.MiningStateTest ‑ testRemoveDeferredCommit
org.sandbox.mining.core.MiningStateTest ‑ testRepoStateAddDeferredCommitAndMoveToPermanentlySkipped
org.sandbox.mining.core.MiningStateTest ‑ testRepoStateLastModelUsedGetterSetter
org.sandbox.mining.core.MiningStateTest ‑ testRepoStateLearnedMaxDiffLinesDefault
org.sandbox.mining.core.MiningStateTest ‑ testSaveLoadRoundtripWithDeferredCommits
org.sandbox.mining.core.NetBeansReporterTest ‑ testFormatGreenEvaluation
org.sandbox.mining.core.NetBeansReporterTest ‑ testFormatNotApplicable
org.sandbox.mining.core.NetBeansReporterTest ‑ testMultipleEvaluations
org.sandbox.mining.core.NetBeansReporterTest ‑ testNullTrafficLightRendersUnknown
org.sandbox.mining.core.NetBeansReporterTest ‑ testPrintToStream
org.sandbox.mining.core.NetBeansReporterTest ‑ testRepoShortName
org.sandbox.mining.core.NetBeansReporterTest ‑ testSeverityMapping
org.sandbox.mining.core.NetBeansReporterTest ‑ testWriteToFile
org.sandbox.mining.core.StatisticsCollectorTest ‑ testComputeTimeWindow
org.sandbox.mining.core.StatisticsCollectorTest ‑ testRebuildFrom
org.sandbox.mining.core.StatisticsCollectorTest ‑ testRecordIrrelevant
org.sandbox.mining.core.StatisticsCollectorTest ‑ testRecordMultiple
org.sandbox.mining.core.StatisticsCollectorTest ‑ testRecordRelevantGreen
org.sandbox.mining.core.StatisticsCollectorTest ‑ testRunMetadataSerialization
org.sandbox.mining.core.TypeContextEnricherTest ‑ testEnrichDetectsMultipleTypes
org.sandbox.mining.core.TypeContextEnricherTest ‑ testEnrichFromBlankDiff
org.sandbox.mining.core.TypeContextEnricherTest ‑ testEnrichFromDiffWithEclipseTypes
org.sandbox.mining.core.TypeContextEnricherTest ‑ testEnrichFromDiffWithNoEclipseTypes
org.sandbox.mining.core.TypeContextEnricherTest ‑ testEnrichFromNullDiff
org.sandbox.mining.core.TypeContextEnricherTest ‑ testKnownTypeCount
org.sandbox.mining.report.JsonReporterTest ‑ testWithErrors
org.sandbox.mining.report.JsonReporterTest ‑ testWithoutErrors
org.sandbox.mining.report.MarkdownReporterTest ‑ testDeltaReportAllKnown
org.sandbox.mining.report.MarkdownReporterTest ‑ testDeltaReportShowsNewAndKnownColumns
org.sandbox.mining.report.MarkdownReporterTest ‑ testDeltaReportWithNullPreviousReport
org.sandbox.mining.report.MarkdownReporterTest ‑ testErrorMessageEscaping
org.sandbox.mining.report.MarkdownReporterTest ‑ testWithErrors
org.sandbox.mining.report.MarkdownReporterTest ‑ testWithoutErrors
org.sandbox.mining.report.MiningReportTest ‑ testErrorTracking
org.sandbox.mining.report.MiningReportTest ‑ testMergeWithErrors
processor() Access ‑ processorProvidesAccessToUnderlyingProcessor
shouldProcess() Customization Tests ‑ Custom shouldProcess() can filter matches
shouldProcess() Customization Tests ‑ shouldProcess() default implementation returns true
stripNegation() ‑ returnsOriginalIfNotNegated
stripNegation() ‑ stripsNegationFromPrefixExpression