Giriş
Şu satırı dahil ederiz.
assertEquals metodu - double + double
İmzası şöyle.
Örnek
Şöyle yaparız.
Çoklu parametre kullanmak için şöyle yaparız.
İstersek şu satırı dahil ederiz.
Şöyle yaparız.
Şöyle yaparız.
Ş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.assertEquals metodu - int + intDeprecated. Use assertEquals(double expected, double actual, double epsilon) instead
Ö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