Home | History | Annotate | Download | only in testing

Lines Matching defs:feature

23 import com.google.common.collect.testing.features.Feature;
104 private Set<Feature<?>> features;
110 public B withFeatures(Feature<?>... features) {
114 public B withFeatures(Iterable<? extends Feature<?>> features) {
119 protected Set<Feature<?>> getFeatures() {
245 Set<Feature<?>> missingFeatures =
256 Set<Feature<?>> unwantedFeatures =
331 protected static String formatFeatureSet(Set<? extends Feature<?>> features) {
333 for (Feature<?> feature : features) {
334 Object featureAsObject = feature; // to work around bogus JDK warning
338 f.getDeclaringClass()) + "." + feature);
340 temp.add(feature.toString());