28 Mayıs 2019 Salı

JUnit4 @Test Anotasyonu - Kullanmayın

Giriş
Şu satırları dahil ederiz.
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
Tanımlama 
Şöyle yaparız.
public class MyTest {

 
  @Before
  public void setUp () {
    ...  
  }

  @After
  public void cleanUp() {
    ...
  }

  @Test
  public void test() {
    ...
  }

}
@Test Anotasyonu
Metodların başına yazılır. Şöyle yaparız.
@Test
public void testCompareAgents() {
  ...
}
exptected Alanı
Test kodunun belli bir exception tipini fırlatmasını bekler.
Örnek
Şöyle yaparız.
@Test(expected = IllegalStateException.class)
public void testKey() {
  ...
}


Hiç yorum yok:

Yorum Gönder