티스토리 뷰

JUnit

  • 테스트 방법에 @ 테스트 애노테이션 추가
  • 클래스의 메소드가 결과를 내 보냅니다.
import static org.junit.Assert.assertEquals;

import org.junit.Test;

public class CalculatorTest {
    @Test
    public void add() {
        Calculator cal = new Calculator();
        assertEquals(9, cal.add(6,3);
    }
}

web application test

  • Spring Mock MVC
  • web integration test (Geb)

참고 사이트


댓글