6e3016284a
Set test directory to directory with test files (not relative to findUsages folder). This way test will be configured as if all testdata is under source root (previously it was copied into package under path with findUsages) and resolvers will see classes under root package. #KT-14974 In Progress
12 lines
428 B
Groovy
Vendored
12 lines
428 B
Groovy
Vendored
class GroovyClass extends JavaWithGroovyInvoke_0 {
|
|
def fieldNoType = new JavaWithGroovyInvoke_0.OtherJavaClass()
|
|
def JavaWithGroovyInvoke_0.OtherJavaClass fieldWithType = new JavaWithGroovyInvoke_0.OtherJavaClass()
|
|
|
|
def methodNoType() {
|
|
new JavaWithGroovyInvoke_0.OtherJavaClass()
|
|
}
|
|
|
|
JavaWithGroovyInvoke_0.OtherJavaClass methodWithType() {
|
|
new JavaWithGroovyInvoke_0.OtherJavaClass()
|
|
}
|
|
} |