import junit.framework.TestCase;
public class SGFPropTest extends TestCase {
public void testGetLabel() {
SGFProp p = new SGFProp(SGFProp.LB, "ab:A".toCharArray());
assertEquals("A", p.getLabel());
p = new SGFProp(SGFProp.LB, "ab:".toCharArray());
assertEquals("", p.getLabel());
}