This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// "(root)/t1/TestFoo.java" | |
package t1; | |
import static org.testng.Assert.*; | |
import org.testng.annotations.*; | |
public class TestFoo { | |
static void log(Class k, String mes) { | |
System.out.println(Thread.currentThread() + " - " + k.toString() + " - " + mes); | |
} |