22 Mart 2018 Perşembe

JUnit4 @FixMethodOrder Anotasyonu

Giriş
Şu satırı dahil ederiz
import org.junit.FixMethodOrder;
Örnek
Şöyle yaparız.
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class FooTest

  @Test
  public void testA() throws InterruptedException {
    ...
  }

  @Test
  public void testB() throws InterruptedException {
    ...
  }
}

Hiç yorum yok:

Yorum Gönder