devinsy-xml/test/one/Foo2Test.java

20 lines
265 B
Java
Raw Normal View History

2013-06-25 02:31:19 +02:00
package one;
2013-06-26 23:36:12 +02:00
import org.junit.Assert;
2013-06-25 02:31:19 +02:00
import org.junit.Test;
public class Foo2Test
{
/**
*
*/
@Test
public void test2a()
{
// logger.debug("===== test starting...");
2013-06-26 23:36:12 +02:00
Assert.assertEquals(true, true);
2013-06-25 02:31:19 +02:00
// logger.debug("===== test done.");
}
}