Created
May 19, 2016 15:57
-
-
Save thiagoolsilva/2825bd03ce922ec37eedfa2d40126763 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Check if the given object is not null | |
public void assertNotNull(Object object) | |
//Check if the given object is equals with actual value | |
public void assertEquals(Object expected, Object actual) | |
//Fail the current Test if any check was failed | |
public void fail(String message) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment