Newer
Older
CollabUnit / src / tests / uk / org / floop / collabunit / DummyTest.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.TestCase;

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

	public void testAlwaysPass() {
		assertTrue("This is supposed to pass", true);
	}
	
	public void testAlwaysFail() {
		assertTrue("This is supposed to fail.", false);
	}
}