misko / misko-hevery-blog (http://misko.hevery.com/)

Public repository for my blog posts

Clone this repository (size: 237.2 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/misko/misko-hevery-blog/
commit 5: 150ce85fe2cf
parent 4: 3535123542d8
branch: default
tags: tip
move code into package
Misko Hevery / misko
3 months ago
r5:150ce85fe2cf 10 loc 241 bytes embed / history / annotate / raw /
import junit.framework.TestSuite;
import junit.textui.TestRunner;

public class AllTests {
	public static void main(String[] args) {
		TestSuite suite = new TestSuite();
		suite.addTestSuite(GreeterTest.class);
		TestRunner.run(suite);
	}
}