Created
May 19, 2016 04:35
-
-
Save thiagoolsilva/b6b91a873d9a8cdb09b351e48105c2ff 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_check_insert_object() { | |
final String fakeRg = "0000000"; | |
Contact contact = new Contact(fakeRg); | |
contact.setAge(30); | |
contact.setEmail("[email protected]"); | |
contact.setName("Lopes"); | |
boolean result = databaseController.insertContact(contact); | |
Assert.assertEquals(true, result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment