JUnit Test Setup : Unit Test : Development Class : Java examples (example source code) Organized by topic

Java
C++
PHP
Java Home »  Development Class   » [  Unit Test  ]  Screenshots 
 



JUnit Test Setup


import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class MainClass extends TestCase {

  public static void main (String... args) {
    junit.textui.TestRunner.run (suite());
  }
  
  private static TSP tsp;

  public MainClass(String method) {
    super(method);
  }

  // This one takes a few hours...
  public void testLongRunner() {
    assertEquals(2300, tsp.shortestPath(50));
  }

  public void testShortTest() {
    assertEquals(140, tsp.shortestPath(5));
  }

  public void testAnotherShortTest() {
    assertEquals(586, tsp.shortestPath(10));
  }

  public static Test suite() {
    TestSuite suite = new TestSuite();
    // Only include short tests
    suite.addTest(new MainClass("testShortTest"));
    suite.addTest(new MainClass("testAnotherShortTest"));

    TestSetup wrapper = new TestSetup(suite) {
      protected void setUp() {
        oneTimeSetUp();
      }

      protected void tearDown() {
        oneTimeTearDown();
      }
    };

    return wrapper;
  }

  public static void oneTimeSetUp() {
    System.out.println("oneTimeSetUp()");    
    // one-time initialization code goes here...
    tsp = new TSP();
    tsp.loadCities("EasternSeaboard");
  }

  public static void oneTimeTearDown() {
    // one-time cleanup code goes here...
    tsp.releaseCities();
  }

}

class TSP {
  public int shortestPath(int numCities) {
    switch (numCities) {
    case 50:
      return 2300;
    case 5:
      return 140;
    case 10:
      return 586;
    }
    return 0;
  }

  public void loadCities(String name) {
  }

  public void releaseCities() {
  }

}

           
       
Download: JUnit-TestSetup.zip   ( 97  K )  
Related examples in the same category
1.  Set JUnit Test case fail informationHas Download File
2.  JUnit assertEquals: Float With DeltaHas Download File
3.  Assert equals: int
4.  Assert equals: LongHas Download File
5.  JUnit assertEquals With MessageHas Download File
6.  JUnit assertTrue
7.  JUnit assertTrue: ObjectArrayHas Download File
8.  Before annotationHas Download File
9.  JUnit BeforeClassHas Download File
10.  JUnit Extends TestCaseHas Download File
11.  JUnit IgnoreHas Download File
12.  Simple test with JUnit
13.  JUnit Test Case With Expected ExceptionHas Download File
14.  Simple use of JUnit to test ArrayList Simple use of JUnit to test ArrayList
15.  Debug frame Debug frame
16.  Error Handler Error Handler
17.  Redirect or reassign some standard descriptors
18.  Utilities for debugging
19.  Testing class Class Testing class Class
20.  Simple utility for testing program output Simple utility for testing program output
21.  Assertion tool for debugging
22.  Simple Debugging Simple Debugging
23.  Demonstration of Design by Contract (DBC) combined with white-box unit testing Demonstration of Design by Contract (DBC) combined with white-box unit testing
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.