junit的引入
通过IntelliJ IDEA
创建maven
项目;引入pom
依赖;
注意点:
一定要将测试文件放在一起,比如test
文件夹下,并且通过ide将该目录标识为Test Sources Root
,不然在其他java
目录建的测试代码不能引入junit
,其只能在Test Sources Root
里才能使用。
junit的使用
@Test
的使用:a:(expected=XXException.class): 如果程序的异常和XXException.class一样,测试通过
1234567891011121314151617181920public class WorldTest {public void testSay() throws Exception {throw new HException("ja;fja;fj;a");}static class HException extends Exception {HException(String msg) {super(msg);}}static class MException extends Exception {MException(String msg) {super(msg);}}}b:(timeout = 毫秒数):如果程序运行时间小于该毫秒数,则测试通过
123410)(timeout =public void testHello(){// do something}