19 lines
265 B
Java
19 lines
265 B
Java
package one;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.Test;
|
|
|
|
public class Foo2Test
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
@Test
|
|
public void test2a()
|
|
{
|
|
// logger.debug("===== test starting...");
|
|
Assert.assertEquals(true, true);
|
|
// logger.debug("===== test done.");
|
|
}
|
|
|
|
}
|