Newer
Older
CollabUnit / src / tests / uk / org / floop / collabunit / CollabRunnerTest.java
/*
 * 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("/results.rdf", 8080);
		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));
	}
	
}