Java 类org.springframework.test.context.ContextCustomizerFactory 实例源码

项目:springmock    文件:SpringMockContextBootstrapper.java   
@Override
protected List<ContextCustomizerFactory> getContextCustomizerFactories() {
    final List<ContextCustomizerFactory> customizers = new ArrayList<>(super.getContextCustomizerFactories());
    customizers.add(new TestContextCustomizer());
    return customizers;
}