Here it is my code: package JUnit; import org.junit.Test;
public class first {
@Test
public void testOne(){
System.out.println("Executing first test");
}
}
I want to create jar file of this class.Thanks in advance