自个儿的第一个junit的例子

自己的第一个junit的例子import static org.junit.Assert.*import org.junit.Testpublic class HelloWor

自己的第一个junit的例子


import static org.junit.Assert.*;
import org.junit.Test;
public class HelloWorld
{
  @Test public void testMultiplication()
  {

  // Testing if 3*2=6:
    assertEquals ("Multiplication", 6, 3*2);
  
  }
}