You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by kn...@apache.org on 2007/10/19 00:18:19 UTC

svn commit: r586158 - /wicket/trunk/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java

Author: knopp
Date: Thu Oct 18 15:18:18 2007
New Revision: 586158

URL: http://svn.apache.org/viewvc?rev=586158&view=rev
Log:
fixed urls

Modified:
    wicket/trunk/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java

Modified: wicket/trunk/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java
URL: http://svn.apache.org/viewvc/wicket/trunk/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java?rev=586158&r1=586157&r2=586158&view=diff
==============================================================================
--- wicket/trunk/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java (original)
+++ wicket/trunk/testing/wicket-threadtest/src/main/java/org/apache/wicket/threadtest/App1Test1.java Thu Oct 18 15:18:18 2007
@@ -26,6 +26,7 @@
 import org.apache.wicket.util.io.WicketObjectStreamFactory;
 import org.apache.wicket.util.lang.Objects;
 
+
 /**
  * @author eelcohillenius
  */
@@ -40,10 +41,10 @@
 	public static void main(String[] args) throws Exception {
 
 		List<String> gets = Arrays.asList(new String[] {
-				"/app1/?wicket:bookmarkablePage=:wicket.threadtest.apps.app1.Home",
-				"/app1/?wicket:interface=:${iteration}:link::ILinkListener:",
-				"/app1/?wicket:interface=:${iteration}:link:1:ILinkListener:",
-				"/app1/?wicket:interface=:${iteration}:link:2:ILinkListener:" });
+				"/app1/?wicket:bookmarkablePage=:org.apache.wicket.threadtest.apps.app1.Home" ,
+				"/app1/?wicket:interface=:${iteration}:link::ILinkListener::" ,
+				"/app1/?wicket:interface=:${iteration}:link:1:ILinkListener::",
+				"/app1/?wicket:interface=:${iteration}:link:2:ILinkListener::" });
 
 		// you can turn this on if you e.g. want to attach to a profiler
 		// Thread.sleep(5000);
@@ -51,7 +52,7 @@
 		Objects.setObjectStreamFactory(new WicketObjectStreamFactory());
 		SimpleGetCommand getCmd = new SimpleGetCommand(gets, 10);
 		// getCmd.setPrintResponse(true);
-		Tester tester = new Tester(getCmd, 1000, true);
+		Tester tester = new Tester(getCmd, 100, true);
 		tester.run();
 	}
 }