Skip to content

Instantly share code, notes, and snippets.

@Khrol
Created September 15, 2013 19:58
Show Gist options
  • Select an option

  • Save Khrol/6573888 to your computer and use it in GitHub Desktop.

Select an option

Save Khrol/6573888 to your computer and use it in GitHub Desktop.
assertTrue(someBooleanValue, "Some boolean value is not true as expected");
assertTrue(!someBooleanValue, "Some boolean value is not false as expected");
assertTrue(someObject != null, "Some object is null as not expected");
assertTrue(actualStringValue.equals("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