Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created March 4, 2013 21:22
Show Gist options
  • Select an option

  • Save edipofederle/5085786 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/5085786 to your computer and use it in GitHub Desktop.
public class TestUnit{
public void defineSenario("Create a User"){
public void testUnit1(){
assertEquals(1 == 1);
}
}
public void defineSenario("Delete User"){
public void testUnit2(){
assertNotNull(ob);
}
public void testUnit3(){
assertFalse(false);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment