The following code
CatalogFeatures features = CatalogFeatures.builder()
.with(CatalogFeatures.Feature.FILES, files)
.build();
is expected to throw IllegalArgumentException for bad syntax values for files. The bad syntax includes null, "file:a/b\c", "", "file:/../../.."
CatalogFeatures features = CatalogFeatures.builder()
.with(CatalogFeatures.Feature.FILES, files)
.build();
is expected to throw IllegalArgumentException for bad syntax values for files. The bad syntax includes null, "file:a/b\c", "", "file:/../../.."