Java by API/org.junit/Before — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 14:47, 31 мая 2010
org.junit.Before
import static org.junit.Assert.assertTrue;
import junit.framework.JUnit4TestAdapter;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* Some simple tests.
*
*/
public class Main{
public static void main (String... args) {
junit.textui.TestRunner.run (suite());
}
@BeforeClass public static void setUpOnce() {
System.out.println("@BeforeClass: set up onece");
}
@Before public void setUp() {
System.out.println("@Before: set up ");
}
public static junit.framework.Test suite() {
return new JUnit4TestAdapter(Main.class);
}
@Test public void testCopy() {
assertTrue(1 == 1);
}
}