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
11 lines
252 B
Java
Vendored
11 lines
252 B
Java
Vendored
import org.jetbrains.annotations.PropertyKey;
|
|
|
|
class A {
|
|
static String message(@PropertyKey(resourceBundle = "propertyFileUsagesByRef.2") String key, Object... args) {
|
|
return key;
|
|
}
|
|
|
|
void test() {
|
|
message("foo.bar");
|
|
}
|
|
} |