6 Aralık 2018 Perşembe

JUnit4 Assert Sınıfı

Giriş
Şu satırı dahil ederiz.
import static org.junit.Assert.*;
Eski kodlarda junit.framework.Assert import ediliyordu ancak bu sınıf artık kullanılmıyor.

assertEquals metodu - double + double
İmzası şöyle.
@Deprecated
public static void assertEquals(double expected, double actual)
Açıklaması şöyle.
Deprecated. Use assertEquals(double expected, double actual, double epsilon) instead
assertEquals metodu - int + int
Örnek
Şöyle yaparız.
int answer = ...;
Assert.assertEquals(answer, 42);
Örnek
Çoklu parametre kullanmak için şöyle yaparız.
assertEquals("Agent.getId", a1.getId(), a2.getId());
assertNotNull metodu
İstersek şu satırı dahil ederiz.
import static org.junit.Assert.assertNotNull;
Şöyle yaparız.
Assert.assertNotNull(someFunction(), "This should not be null");
assertNull metodu
Şöyle yaparız.
Assert.assertNull(someFunction());
assertTrue metodu
Şöyle yaparız.
assertTrue(foo == bar);

Hiç yorum yok:

Yorum Gönder