我的mvn test 采用sping 和 junit4.4 annotation方式
@ContextConfiguration(locations={
"classpath:/applicationContext-datasource.xml"
        })
@RunWith(SpringJUnit4ClassRunner.class)
@TestExecutionListeners( { DependencyInjectionTestExecutionListener.class })
public class TTest extends AbstractJUnit4SpringContextTests {
   String ann;    @Test
    public void test() throws IOException {        long start = DateUtils.strToDate("2011-11-01 00:00:00").getTime();    }...
}
我想在调用mvn test -Dtest=TTest  进行测试实例测试时想传入参数,要怎么传?
比如上例中我想在调用mvn test时传入ann的值,应该如何调用?