SUMMARY - TMMi(Test Maturity Model integration) Model, 소프트웨어 결함의 종류와 차이, 통합 테스팅 수행 방법 비교

CODEDRAGON Development/Software Engineering

반응형


 

TMMi(Test Maturity Model integration) Model

http://codedragon.tistory.com/5310

 

 



소프트웨어 결함의 종류와 차이

http://codedragon.tistory.com/5354

 

 

 




통합 테스팅 수행 방법 비교

http://codedragon.tistory.com/6537

 

 

 



Junit - test code sample

public class TestClass{

private String name;

@Test

public void play() {

// 코드 생략

return ;

}

}

 

jUnit @Test 어노테이션이 적힌 메서드를 테스트 메서드로 인식합니다.

테스트 메서드는 반환형(return type) void여야 합니.

 


반응형