Package opennlp.ccg.hylo.graph

Source Code of opennlp.ccg.hylo.graph.LFBaseTest

package opennlp.ccg.hylo.graph;

import java.io.File;

import opennlp.ccg.grammar.Grammar;

import org.junit.Before;
import org.junit.Test;

public class LFBaseTest {

  static Grammar grammar = null;
 
  @Before
  @SuppressWarnings("deprecation")
  public void setUp() throws Exception {
    if(grammar == null) {
      grammar = new Grammar(new File(new File(
          new File(System.getProperty("user.dir")), "test"),
          "grammar.xml").toURL());
    }
  }

  @Test
  public void dummy() {}

}
TOP

Related Classes of opennlp.ccg.hylo.graph.LFBaseTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.