Try to set the parallel setting at the suite level to "tests":
<suite name="MySuite" parallel="
tests" thread-count="10">
This will cause all of your <test> to run in their own thread, but since you override it to "methods" in test1 and test3, these two should run each method in their own thread.
--
Cedric
--
Cédric