blob: 0517f4cfb5277529a00c6f7812e5d11bc06f5738 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 opennlp.tools.parse_thicket.matching;
import java.util.List;
import opennlp.tools.parse_thicket.ParseTreeNode;
import junit.framework.TestCase;
public class PT2ThicketPhraseBuilderTest extends TestCase {
private PT2ThicketPhraseBuilder builder = new PT2ThicketPhraseBuilder();
public void testParsePhrase(){
String line = "(NP (NNP Iran)) (VP (VBZ refuses) (S (VP (TO to) (VP (VB accept) (S (NP (DT the) " +
"(NNP UN) (NN proposal)) (VP (TO to) (VP (VB end) (NP (PRP$ its) (NN dispute))))))))";
List<ParseTreeNode> res = builder.parsePhrase("NP", line);
System.out.println(res);
assertTrue(res!=null);
assertTrue(res.size()>0);
}
}