/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package klauer.callingruby.yokoharada; 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 klauer */ public class GettingEngineExampleTest { public GettingEngineExampleTest() { } @BeforeClass public static void setUpClass() throws Exception { } @AfterClass public static void tearDownClass() throws Exception { } @Before public void setUp() { } @After public void tearDown() { } /** * Test of caseOne method, of class GettingEngineExample. */ @Test public void testCaseOne() throws Exception { System.out.println("caseOne"); GettingEngineExample instance = new GettingEngineExample(); instance.caseOne(); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of caseTwo method, of class GettingEngineExample. */ @Test public void testCaseTwo() throws Exception { System.out.println("caseTwo"); GettingEngineExample instance = new GettingEngineExample(); instance.caseTwo(); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of caseThree method, of class GettingEngineExample. */ @Test public void testCaseThree() throws Exception { System.out.println("caseThree"); GettingEngineExample instance = new GettingEngineExample(); instance.caseThree(); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of caseFour method, of class GettingEngineExample. */ @Test public void testCaseFour() { System.out.println("caseFour"); GettingEngineExample instance = new GettingEngineExample(); instance.caseFour(); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } /** * Test of main method, of class GettingEngineExample. */ @Test public void testMain() throws Exception { System.out.println("main"); String[] args = null; GettingEngineExample.main(args); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); } }