/* * Copyright 2011 * Ubiquitous Knowledge Processing (UKP) Lab * Technische Universität Darmstadt * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package de.tudarmstadt.ukp.dkpro.core.frequency.resources; import static org.apache.uima.fit.factory.AnalysisEngineFactory.createEngine; import static org.apache.uima.fit.factory.AnalysisEngineFactory.createEngineDescription; import static org.apache.uima.fit.factory.ExternalResourceFactory.createExternalResourceDescription; import org.apache.uima.analysis_engine.AnalysisEngine; import org.apache.uima.analysis_engine.AnalysisEngineDescription; import org.apache.uima.analysis_engine.AnalysisEngineProcessException; import org.apache.uima.fit.component.JCasAnnotator_ImplBase; import org.apache.uima.fit.descriptor.ExternalResource; import org.apache.uima.jcas.JCas; import org.junit.Test; import de.tudarmstadt.ukp.dkpro.core.api.frequency.provider.FrequencyCountProvider; public class Web1tInMemoryResourceTest { public static class Annotator extends JCasAnnotator_ImplBase { final static String MODEL_KEY = "FrequencyProvider"; @ExternalResource(key = MODEL_KEY) private FrequencyCountProvider model; @Override public void process(JCas aJCas) throws AnalysisEngineProcessException { System.out.println(model.getClass().getName()); } } @Test public void configureAggregatedExample() throws Exception { AnalysisEngineDescription desc = createEngineDescription(Annotator.class, Annotator.MODEL_KEY, createExternalResourceDescription( Web1TInMemoryFrequencyCountResource.class, Web1TInMemoryFrequencyCountResource.PARAM_MODEL_LOCATION, "src/test/resources/web1t/", Web1TInMemoryFrequencyCountResource.PARAM_LANGUAGE, "en", Web1TInMemoryFrequencyCountResource.PARAM_MAX_NGRAM_LEVEL, "2")); // Check the external resource was injected AnalysisEngine ae = createEngine(desc); ae.process(ae.newJCas()); } }