Add tests for enhanced java signatures based on AbstractResolvedCallsTest.
Refactor AbstractResolvedCallsTest to support multiple carets (multiple methods being tested for resolve) in testdata file.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
fun <E : CharSequence> notNullValues(collection: List<E>) {
|
||||
collection.<caret>stream()
|
||||
collection.<caret>parallelStream()
|
||||
}
|
||||
|
||||
fun <E : CharSequence> nullableValues(collection: List<E?>) {
|
||||
collection.<caret>stream()
|
||||
collection.<caret>parallelStream()
|
||||
}
|
||||
|
||||
fun <E : CharSequence?> nullableValues2(collection: List<E>) {
|
||||
collection.<caret>stream()
|
||||
collection.<caret>parallelStream()
|
||||
}
|
||||
Reference in New Issue
Block a user