Spring boot 2.x 버전에서 , guava의 테스트용 TestPropertyValues가 확인되었습니다.
import com.google.common.collect.Streams;
public static TestPropertyValues of(Iterable<String> pairs) {
if (pairs == null) {
return empty();
}
return of(Streams.stream(pairs));
}
guava의 테스트용 소스의 삭제가 필요합니다.