Set JUnit Test case fail information : Unit Test : Development Class : Java examples (example source code) Organized by topic

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



Set JUnit Test case fail information

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());
  }  

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

  public void testPassNullsToConstructor() {
    try {
      Person p = new Person(null, null);
      fail("Expected IllegalArgumentException because both args are null");
    catch (IllegalArgumentException expected) {
    }
  }

  public void testNullsInName() {
    fail("sample failure");
    Person p = new Person(null, "lastName");
    assertEquals("lastName", p.getFullName());

    p = new Person("Tanner"null);
    assertEquals("Tanner ?", p.getFullName());
  }

  public static void oneTimeSetup() {
    System.out.println("oneTimeSetUp");
  }

  public static void oneTimeTearDown() {
    System.out.println("oneTimeTearDown");
  }

  public static Test suite() {
    TestSetup setup = new TestSetup(new TestSuite(MainClass.class)) {
      protected void setUp() throws Exception {
        oneTimeSetup();
      }

      protected void tearDown() throws Exception {
        oneTimeTearDown();
      }
    };
    return setup;
  }
}

class Person {
  private String firstName;

  private String lastName;

  public Person(String firstName, String lastName) {
    if (firstName == null && lastName == null) {
      throw new IllegalArgumentException("Both names cannot be null");
    }
    this.firstName = firstName;
    this.lastName = lastName;
  }

  public String getFullName() {
    String first = (this.firstName != nullthis.firstName : "?";
    String last = (this.lastName != nullthis.lastName : "?";

    return first + " " + last;
  }

  public String getFirstName() {
    return this.firstName;
  }

  public String getLastName() {
    return this.lastName;
  }
}


           
       
Download: JUint-FailInformation.zip   ( 98  K )  
Related examples in the same category
1.  JUnit assertEquals: Float With DeltaHas Download File
2.  Assert equals: int
3.  Assert equals: LongHas Download File
4.  JUnit assertEquals With MessageHas Download File
5.  JUnit assertTrue
6.  JUnit assertTrue: ObjectArrayHas Download File
7.  Before annotationHas Download File
8.  JUnit BeforeClassHas Download File
9.  JUnit Extends TestCaseHas Download File
10.  JUnit IgnoreHas Download File
11.  Simple test with JUnit
12.  JUnit Test Case With Expected ExceptionHas Download File
13.  JUnit Test SetupHas 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.