<dependency>
<groupId>org.expekt</groupId>
<artifactId>expekt</artifactId>
<version>1.1.5</version>
<scope>test</scope>
</dependency>
import org.expekt.Expect;
public class MyLibraryTest {
public static void main(String[] args) {
Expect.expect(2 + 2).toEqual(4);
Expect.expect("Hello").toContain("o");
Expect.expect(5.6).toBeGreaterThan(3.2);
}
}