“Błąd: metoda aserttht (T, Matcher” Kod odpowiedzi

Błąd: metoda aserttht (t, Matcher ) w typu MatcherAssert nie ma zastosowania do argumentów (List , Matcher >)

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.equalTo;

boolean a;
boolean b;

// all statements test the same
assertThat(a, equalTo(b));
assertThat(a, is(equalTo(b)));
assertThat(a, is(b));
Hilarious Hare

Błąd: metoda aserttht (t, Matcher ) w typu MatcherAssert nie ma zastosowania do argumentów (List , Matcher >)

assertThat("test", anyOf(is("testing"), containsString("est")));
Hilarious Hare

Błąd: metoda aserttht (t, Matcher ) w typu MatcherAssert nie ma zastosowania do argumentów (List , Matcher >)

// JUnit 4 for equals check
assertEquals(expected, actual);
// Hamcrest for equals check
assertThat(actual, is(equalTo(expected)));

// JUnit 4 for not equals check
assertNotEquals(expected, actual)
// Hamcrest for not equals check
assertThat(actual, is(not(equalTo(expected))));
Hilarious Hare

Odpowiedzi podobne do “Błąd: metoda aserttht (T, Matcher”

Pytania podobne do “Błąd: metoda aserttht (T, Matcher”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu