public class TestesDeClasseTal {
public static void main(String[] argumentos) {
// Bateria de testes:
teste1();
teste2();
//...
// O código passou em todos os testes
System.out.println("OK");
}
private static void teste1() {
// assert condiçãoDoTeste1
}
private static void teste2() {
// assert condiçãoDoTeste2
}
// ...
}