return this;
}
public TestProbeProvider build() {
if (anchors.size() == 0) {
throw new TestContainerException("No tests added to setup!");
}
constructProbeTag(extraProperties);
try {
TinyBundle bundle = prepareProbeBundle(createExtraIgnores());
return new DefaultTestProbeProvider(getTests(), store, store.store(bundle
.build(withClassicBuilder())));
}
catch (IOException e) {
throw new TestContainerException(e);
}
}