package template;

import static org.junit.Assert.assertEquals;

import org.junit.Test;

/** A simple test case for XXX.
 * Note: in Eclipse you can use the New Class wiz to make JUnit tests.
 * This class' name should be XXXTest, where XXX is the class it tests.
 */
public class junitTest {

	protected String f;

	@Test
	public void testXXX() {
		f = "Ian" + ' ' + "Darwin";
		String expected = "Ian Darwin";
		assertEquals("String concat", expected, f);
	}
}

