import static org.junit.Assert.assertEquals;
import junit.framework.JUnit4TestAdapter;
import org.junit.Test;
public class Main{
public static void main (String... args) {
junit.textui.TestRunner.run (suite());
}
public static junit.framework.Test suite() {
return new JUnit4TestAdapter(Main.class);
}
@Test public void testCopy() {
assertEquals("Capacity", 11.991, 11.99, 0.1);
}
}
|