Skip to content

Instantly share code, notes, and snippets.

View maxisandoval37's full-sized avatar
:octocat:
Lorem ipsum dolor sit amet

Maximiliano Sandoval maxisandoval37

:octocat:
Lorem ipsum dolor sit amet
View GitHub Profile
@maxisandoval37
maxisandoval37 / UsingHamcrest.java
Created April 18, 2025 00:27 — forked from abadongutierrez/UsingHamcrest.java
Examples using Hamcrest
import static org.junit.Assert.*;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.equalToIgnoringCase;
import static org.hamcrest.Matchers.hasItem;
import static org.hamcrest.Matchers.hasItems;
import static org.hamcrest.Matchers.isOneOf;
import static org.hamcrest.Matchers.not;