package de.fhkoeln.santiago; import static org.junit.Assert.assertTrue; import org.junit.Test; /* * SimpleTest.java * * Version 1.0 Sep 19, 2008 * * Copyright notice * * Brief description * * (c) 2008 by dbreuer */ /** * Documentation comment without implementation details. * Use implementation comments to describe details of the implementation. * Comment lines should not be longer than 70 characters. * * @author dbreuer * @version 1.0 Sep 19, 2008 * */ public class SimpleTest { @Test public void testShouldJustAssertTrue() { assertTrue(true); } }