Example usage for org.springframework.data.solr.core.schema SolrSchemaWriter SolrSchemaWriter

List of usage examples for org.springframework.data.solr.core.schema SolrSchemaWriter SolrSchemaWriter

Introduction

In this page you can find the example usage for org.springframework.data.solr.core.schema SolrSchemaWriter SolrSchemaWriter.

Prototype

public SolrSchemaWriter(SolrClientFactory factory) 

Source Link

Usage

From source file:org.springframework.data.solr.core.schema.SolrSchemaWriterTests.java

@Before
public void setUp() {

    Mockito.when(factoryMock.getSolrServer(Mockito.anyString())).thenReturn(solrServerMock);
    writer = new SolrSchemaWriter(factoryMock);
}