public class SGFLabelPropertyTest extends TestCase {
public void testGetText() {
SGFPoint p = new SGFPoint(0, 0);
char[] l = {'A'};
SGFLabelProperty prop = new SGFLabelProperty(SGFPropertyName.LB, p, l);
assertEquals(new String(l), prop.getText());
assertEquals(p, prop.getPoint());
}