1 | public class FoldingPointXmlBeanTest extends BaseSQuirreLJUnit4TestCase {↵ | | 1 | public class PrintXmlBeanTest extends BaseSQuirreLJUnit4TestCase {↵
|
|
2 | FoldingPointXmlBean classUnderTest = new FoldingPointXmlBean();↵ | | 2 | PrintXmlBean classUnderTest = new PrintXmlBean();↵
|
|
3 | @Test↵ | | 3 | @Test↵
|
4 | public void testGetX() throws Exception↵ | | 4 | public void testGetEdgesScale() throws Exception↵
|
5 | {↵ | | 5 | {↵
|
6 | classUnderTest.setX(10);↵ | | 6 | classUnderTest.setEdgesScale(10);↵
|
7 | assertEquals(10, classUnderTest.getX());↵ | | 7 | assertEquals(10, classUnderTest.getEdgesScale());↵
|
8 | }↵ | | 8 | }↵
|
|
9 | @Test↵ | | 9 | @Test↵
|
10 | public void testGetY() throws Exception↵ | | 10 | public void testIsShowEdges() throws Exception↵
|
11 | {↵ | | 11 | {↵
|
12 | classUnderTest.setY(10);↵ | | 12 | classUnderTest.setShowEdges(true);↵
|
13 | assertEquals(10, classUnderTest.getY());↵ | | 13 | assertEquals(true, classUnderTest.isShowEdges());↵
|
14 | | | 14 |
|