Package kg.apc.jmeter.gui.ComponentBorder

Examples of kg.apc.jmeter.gui.ComponentBorder.Edge


     */
    @Test
    public void testGetEdge() {
        System.out.println("getEdge");
        ComponentBorder instance = new ComponentBorder(new JButton("test"));
        Edge expResult = Edge.RIGHT;
        Edge result = instance.getEdge();
        assertEquals(expResult, result);
    }
View Full Code Here


     * Test of setEdge method, of class ComponentBorder.
     */
    @Test
    public void testSetEdge() {
        System.out.println("setEdge");
        Edge edge = Edge.LEFT;
        ComponentBorder instance = new ComponentBorder(new JButton("test"));
        instance.setEdge(edge);
    }
View Full Code Here

TOP

Related Classes of kg.apc.jmeter.gui.ComponentBorder.Edge

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.