스프링부트 2.x에 사용된 TestPropertyValues는 guava에서 사용되는 클래스입니다.
import com.google.common.collect.Streams;
public static TestPropertyValues of(Iterable<String> pairs) {
if (pairs == null) {
return empty();
}
return of(Streams.stream(pairs));
}
jdk에서 다른 클래스를 사용하려 했던 것 같습니다만, guava 클래스를 사용하지 않도록 설정해야 합니다.