use of com.hazelcast.config.AttributeConfig in project hazelcast by hazelcast.
the class ExtractorHelperTest method instantiate_extractor_notExistingClass.
@Test
public void instantiate_extractor_notExistingClass() {
// GIVEN
AttributeConfig config = new AttributeConfig("iq", "not.existing.class");
// EXPECT
expected.expect(IllegalArgumentException.class);
expected.expectCause(isA(ClassNotFoundException.class));
// WHEN
instantiateExtractor(config);
}
Aggregations