Created
May 19, 2016 15:47
-
-
Save thiagoolsilva/7f7bb5d76fb6cac9f2dacf2325236635 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
public void test_remove_invalid_content() { | |
final String invalidRg = "12345678"; | |
//1 | |
//Check if a invalid content was not deleted | |
boolean result = databaseController.deleteContactByRg(invalidRg); | |
Assert.assertEquals(false, result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment