develog

JUnit4 hamcrest 본문

Dev/junit

JUnit4 hamcrest

냐옴 2012. 11. 28. 23:28

import static org.junit.Assert.*;

import static org.hamcrest.CoreMatchers.*;


@Test

public void testGetName() {

    assertThat(user.getName(), is("aaa"));

}


'Dev > junit' 카테고리의 다른 글

JUnit 4 Test Suite  (0) 2012.12.02
JUnit Parameterized Test  (0) 2012.12.02
JUnit 4 Assert  (0) 2012.11.07
[junit] JUnit 4 Annotations  (0) 2012.11.07
JUnit  (0) 2012.05.04
Comments