868788899091929394
*/ @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); }
979899100101102103104105
* 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); }