Examples of SGFLabelProperty


Examples of com.sgfj.SGFLabelProperty

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());
    }
View Full Code Here
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.