I can't get any more than two threads executing at once using the Maven + Surefire combo. I've experimented with a number of combinations of threadCount, perCoreThreadCount, and useUnlimitedThreads settings, but can never do better than two threads. See attached screenshot: there will be ~12 Firefox windows, but only two "driving" at one time.

My machine has 4 cores of 2.6 Ghz i7 in it, so it's not like I should be hitting a hardware limit yet.
Here's an example of one of the Surefire configurations:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<includes>
<include>**/*Test*.*</include>
</includes>
<threadCount>10</threadCount>
<perCoreThreadCount>true</perCoreThreadCount>
<parallel>classes</parallel>
</configuration>
</plugin>
For my tests, I'm using Scala wrapped in a JUnit runner. Each test is in its own class. My JUnit is 4.10, Maven 3.04 I think.
2.7.2of Surefire. Have you tried switching to the latest version? – Stephen Connolly Nov 12 '12 at 3:012.12.4[1]: maven.apache.org/surefire/maven-surefire-plugin – Stephen Connolly Nov 13 '12 at 20:26