Re: OutOfMemory error in JUnit
Posted By:
Robert_Lybarger
Posted On:
Saturday, February 16, 2008 12:45 AM
problem is that junit and your unit test fixtures (or whatever) added some extra overhead and pushed you over the heap limit you're running with. Look into "-Xmx" argument to bump the max heap size. (Google around for that.)