Newer
Older
CollabUnit / src / tests / uk / org / floop / collabunit / CollabRunnerTest.java
@Alex Tucker Alex Tucker on 12 Sep 2004 752 bytes Start of CollabUnit.
/*
 * Created on Sep 7, 2004
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package uk.org.floop.collabunit;

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

/**
 * @author alex
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class CollabRunnerTest extends TestCase {

	public void testCollabRunner() {
		CollabRunner runner = new CollabRunner();
		Test test = runner.getTest("uk.org.floop.collabunit.DummyTest");
		assertNotNull("Test shouldn't be null.", test);
		assertTrue("Failed to run test which should always pass.",
				runner.runTest(test));
	}
	
}