Skip to content

Instantly share code, notes, and snippets.

@andgomes
Created October 7, 2016 18:16
Show Gist options
  • Save andgomes/e7504c3aeecf4577fcab78fdbf292cac to your computer and use it in GitHub Desktop.
Save andgomes/e7504c3aeecf4577fcab78fdbf292cac to your computer and use it in GitHub Desktop.
Classe exemplo de teste gerada pelo archetype quickstart do Maven.
package com.andgomes;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class AppTest extends TestCase {
public AppTest(String testName) {
super(testName);
}
public static Test suite() {
return new TestSuite(AppTest.class);
}
public void testApp() {
assertTrue(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment