Home | History | Annotate | Download | only in testing

Lines Matching refs:features

21 import com.google.common.collect.testing.features.CollectionFeature;
22 import com.google.common.collect.testing.features.Feature;
53 List<Feature<?>> features = Helpers.copyToList(getFeatures());
54 features.add(CollectionFeature.KNOWN_ORDER);
55 withFeatures(features);
87 List<Feature<?>> features = new ArrayList<Feature<?>>();
88 features.addAll(parentBuilder.getFeatures());
89 features.remove(CollectionFeature.ALLOWS_NULL_VALUES);
90 features.add(CollectionFeature.SUBSET_VIEW);
94 .withFeatures(features)