Skip to content

Instantly share code, notes, and snippets.

@Khrol
Created September 15, 2013 20:01
Show Gist options
  • Save Khrol/6573929 to your computer and use it in GitHub Desktop.
Save Khrol/6573929 to your computer and use it in GitHub Desktop.
assertTrue(someBooleanValue, "Some boolean value is not true as expected");
assertFalse(someBooleanValue, "Some boolean value is not false as expected");
assertNotNull(someObject, "Some object is null as not expected");
assertEquals(actualStringValue, "Expected String Value", "Some string is not as expected");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment