Skip to content

Instantly share code, notes, and snippets.

@Canx
Created May 4, 2011 10:19
Show Gist options
  • Save Canx/955039 to your computer and use it in GitHub Desktop.
Save Canx/955039 to your computer and use it in GitHub Desktop.
class DistanciaTest extends GroovyTestCase {
def d1, d2
void setUp() {
d1 = new Distancia(valor:5, unidad:"m")
d2 = new Distancia(valor:5, unidad:"m")
}
void testSumaOk() {
assertEquals("Deben sumarse correctamente", d1+d2, 10)
}
void testIgualdad(){
assertEquals("Deben ser iguales", d1==d2, true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment