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
8 lines
289 B
Java
Vendored
8 lines
289 B
Java
Vendored
class A {
|
|
void test() {
|
|
@PropertyKey(resourceBundle = "propertyUsages.0") String s1 = "foo.bar"
|
|
@PropertyKey(resourceBundle = "propertyUsages.0") String s2 = "foo.baz"
|
|
PropertyUsages_1Kt.message("foo.bar");
|
|
PropertyUsages_1Kt.message("foo.baz");
|
|
}
|
|
} |