/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package art.client.GUI.components.devices.window.colors.rtz32.coordination.components; import art.library.model.devices.colors.areartz.information.RTZ32_AreaInformation_Junction; import art.library.model.devices.colors.areartz.information.RTZ32_AreaInformation_Route; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.*; /** * * @author Andres */ public class Diagram_CoordinationTest { public Diagram_CoordinationTest() { } @BeforeClass public static void setUpClass() { } @AfterClass public static void tearDownClass() { } @Before public void setUp() { } @After public void tearDown() { } /** * Test of reload method, of class Diagram_Coordination. */ @Test public void testReload() { System.out.println("reload"); RTZ32_AreaInformation_Route route = null; Diagram_Coordination instance = null; instance.reload(route); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of paint method, of class Diagram_Coordination. */ @Test public void testPaint() { System.out.println("paint"); Graphics graphics = null; Diagram_Coordination instance = null; instance.paint(graphics); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of updateController method, of class Diagram_Coordination. */ @Test public void testUpdateController() { System.out.println("updateController"); RTZ32_AreaInformation_Junction junction = null; Diagram_Coordination.updateController(junction); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of format method, of class Diagram_Coordination. */ @Test public void testFormat() { System.out.println("format"); Graphics2D g2 = null; Diagram_Coordination.format(g2); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of drawRightString method, of class Diagram_Coordination. */ @Test public void testDrawRightString_4args_1() { System.out.println("drawRightString"); Graphics2D g2 = null; String text = ""; Rectangle2D rect = null; Font font = null; Diagram_Coordination.drawRightString(g2, text, rect, font); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of drawRightString method, of class Diagram_Coordination. */ @Test public void testDrawRightString_4args_2() { System.out.println("drawRightString"); Graphics2D g2 = null; String text = ""; double x = 0.0; double y = 0.0; Diagram_Coordination.drawRightString(g2, text, x, y); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of drawLeftString method, of class Diagram_Coordination. */ @Test public void testDrawLeftString_4args_1() { System.out.println("drawLeftString"); Graphics2D g2 = null; String text = ""; Rectangle2D rect = null; Font font = null; Diagram_Coordination.drawLeftString(g2, text, rect, font); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of drawLeftString method, of class Diagram_Coordination. */ @Test public void testDrawLeftString_4args_2() { System.out.println("drawLeftString"); Graphics2D g2 = null; String text = ""; double x = 0.0; double y = 0.0; Diagram_Coordination.drawLeftString(g2, text, x, y); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of drawCenteredString method, of class Diagram_Coordination. */ @Test public void testDrawCenteredString_4args_1() { System.out.println("drawCenteredString"); Graphics2D g2 = null; String text = ""; double x = 0.0; double y = 0.0; Diagram_Coordination.drawCenteredString(g2, text, x, y); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of drawCenteredString method, of class Diagram_Coordination. */ @Test public void testDrawCenteredString_4args_2() { System.out.println("drawCenteredString"); Graphics2D g2 = null; String text = ""; Rectangle2D rect = null; Font font = null; Diagram_Coordination.drawCenteredString(g2, text, rect, font); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } }