Code Search for Developers
 
 
  

ExampleTest.java from GridBlocks at Krugle


Show ExampleTest.java syntax highlighted

/*
 * Copyright (c) 2005 
 * Helsinki Institute of Physics
 * see LICENSE file for details 
 * 
 * ExampleTest.java
 * Created on May 19, 2005
 */

package fi.hip.gb.test.module;

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


/**
 * This is an example class for gb-dummy project.
 * 
 * @author Juho Karppinen
 * @version $Id:
 */
public class ExampleTest extends TestCase {
	public ExampleTest(String name) {
		super(name);
	}

	public static Test suite() {
		return new TestSuite(ExampleTest.class);
	}
	
	public static void main(String[] args) {
	    junit.textui.TestRunner.run(suite());
	}
    
    /**
     * Test me and myself
     */
	public static void testMe() throws Exception {
	    assertTrue(true);
	}
}



See more files for this project here

GridBlocks

GridBlocks builds a grid application framework via easy-to-use building blocks in distributed environment. The framework offers components for Grid security, distributed storage, computing, and Portlet web interfaces.

Project homepage: http://sourceforge.net/projects/gridblocks
Programming language(s): Java,JSP,XML
License: other

  ExampleTest.java