Skip to content

Instantly share code, notes, and snippets.

@dblevins
Created October 10, 2009 08:35
Show Gist options
  • Save dblevins/206723 to your computer and use it in GitHub Desktop.
Save dblevins/206723 to your computer and use it in GitHub Desktop.
import junit.framework.TestCase;
public class MemoryTest extends TestCase {
public void test() {
Runtime runtime = Runtime.getRuntime();
System.out.println("maxMemory = " + runtime.maxMemory());
System.out.println("freeMemory = " + runtime.freeMemory());
System.out.println("totalMemory = " + runtime.totalMemory());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment