Package com.sgfj

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

Related Classes of com.sgfj.SGFLabelProperty

Copyright © 2018 www.massapicom. 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.