Home | History | Annotate | Download | only in features

Lines Matching refs:features

17 package com.google.common.collect.testing.features;
152 Set<Feature<?>> features = Sets.<Feature<?>>newHashSet(
154 assertSame(features, FeatureUtil.addImpliedFeatures(features));
158 Set<Feature<?>> features;
160 features = Sets.<Feature<?>>newHashSet(
162 assertThat(FeatureUtil.addImpliedFeatures(features)).has().item(
165 features = Sets.<Feature<?>>newHashSet(
167 assertThat(FeatureUtil.addImpliedFeatures(features)).has().exactly(
171 features = Sets.<Feature<?>>newHashSet(
173 assertThat(FeatureUtil.addImpliedFeatures(features)).has().exactly(
182 Set<Feature<?>> features = Sets.<Feature<?>>newHashSet(
184 assertNotSame(features, FeatureUtil.impliedFeatures(features));
188 Set<Feature<?>> features;
190 features = Sets.<Feature<?>>newHashSet(
192 assertTrue(FeatureUtil.impliedFeatures(features).isEmpty());
194 features = Sets.<Feature<?>>newHashSet(
196 assertThat(FeatureUtil.impliedFeatures(features)).has().item(
199 features = Sets.<Feature<?>>newHashSet(
201 assertThat(FeatureUtil.impliedFeatures(features)).has().exactly(