alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 * Class1Test.java
 * JUnit based test
 *
 * Created on February 11, 2003, 11:20 AM
 */

package data.expert;

import junit.framework.*;

/**
 *
 * @author dave
 */
public class TestClass1 extends TestCase {
    
    public TestClass1(java.lang.String testName) {
        super(testName);
    }
    
    /** Test of method_public_void method, of class data.include.Class1. */
    public void testMethod_public_void() {
        System.out.println("testMethod_public_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_public_void_args method, of class data.include.Class1. */
    public void testMethod_public_void_args() {
        System.out.println("testMethod_public_void_args");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_public_static_void method, of class data.include.Class1. */
    public void testMethod_public_static_void() {
        System.out.println("testMethod_public_static_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_public_final_void method, of class data.include.Class1. */
    public void testMethod_public_final_void() {
        System.out.println("testMethod_public_final_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_public_static_final_void method, of class data.include.Class1. */
    public void testMethod_public_static_final_void() {
        System.out.println("testMethod_public_static_final_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_protected_void method, of class data.include.Class1. */
    public void testMethod_protected_void() {
        System.out.println("testMethod_protected_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_protected_void_args method, of class data.include.Class1. */
    public void testMethod_protected_void_args() {
        System.out.println("testMethod_protected_void_args");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_protected_static_void method, of class data.include.Class1. */
    public void testMethod_protected_static_void() {
        System.out.println("testMethod_protected_static_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_protected_final_void method, of class data.include.Class1. */
    public void testMethod_protected_final_void() {
        System.out.println("testMethod_protected_final_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_protected_static_final_void method, of class data.include.Class1. */
    public void testMethod_protected_static_final_void() {
        System.out.println("testMethod_protected_static_final_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_default_void method, of class data.include.Class1. */
    public void testMethod_default_void() {
        System.out.println("testMethod_default_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_default_void_args method, of class data.include.Class1. */
    public void testMethod_default_void_args() {
        System.out.println("testMethod_default_void_args");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_default_static_void method, of class data.include.Class1. */
    public void testMethod_default_static_void() {
        System.out.println("testMethod_default_static_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_default_final_void method, of class data.include.Class1. */
    public void testMethod_default_final_void() {
        System.out.println("testMethod_default_final_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    /** Test of method_default_static_final_void method, of class data.include.Class1. */
    public void testMethod_default_static_final_void() {
        System.out.println("testMethod_default_static_final_void");
        
        // Add your test code below by replacing the default call to fail.
        fail("The test case is empty.");
    }
    
    public static Test suite() {
        TestSuite suite = new TestSuite(Class1Test.class);
        
        return suite;
    }
    
    // Add test methods here, they have to start with 'test' name.
    // for example:
    // public void testHello() {}
    
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.