Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormFileUploadPage.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockFormFileUploadPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormFileUploadPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockFormFileUploadPage.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormFileUploadPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockFormFileUploadPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormFileUploadPage.java Tue Apr 10 11:15:14 2007 @@ -14,15 +14,15 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.TextField; -import wicket.markup.html.form.upload.FileUpload; -import wicket.markup.html.form.upload.FileUploadField; -import wicket.model.CompoundPropertyModel; -import wicket.util.lang.Bytes; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.TextField; +import org.apache.wicket.markup.html.form.upload.FileUpload; +import org.apache.wicket.markup.html.form.upload.FileUploadField; +import org.apache.wicket.model.CompoundPropertyModel; +import org.apache.wicket.util.lang.Bytes; /** * Mock form for use when testing FormTester's addFile functionality.
Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormPage.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockFormPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockFormPage.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockFormPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockFormPage.java Tue Apr 10 11:15:14 2007 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.CheckBox; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.TextArea; -import wicket.markup.html.form.TextField; -import wicket.model.CompoundPropertyModel; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.CheckBox; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.TextArea; +import org.apache.wicket.markup.html.form.TextField; +import org.apache.wicket.model.CompoundPropertyModel; /** * Mock page for testing basic FormTester functionality. Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageParameterPage.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageParameterPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageParameterPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageParameterPage.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageParameterPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageParameterPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageParameterPage.java Tue Apr 10 11:15:14 2007 @@ -14,12 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; -import wicket.PageParameters; -import wicket.markup.html.WebPage; -import wicket.markup.html.basic.Label; -import wicket.markup.html.link.BookmarkablePageLink; +import org.apache.wicket.PageParameters; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.basic.Label; +import org.apache.wicket.markup.html.link.BookmarkablePageLink; /** * Mock page for testing PageParameters handling in WicketTester. Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndAjaxFormSubmitBehavior.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageWithFormAndAjaxFormSubmitBehavior.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndAjaxFormSubmitBehavior.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageWithFormAndAjaxFormSubmitBehavior.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndAjaxFormSubmitBehavior.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageWithFormAndAjaxFormSubmitBehavior.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndAjaxFormSubmitBehavior.java Tue Apr 10 11:15:14 2007 @@ -14,17 +14,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; import java.io.Serializable; -import wicket.ajax.AjaxRequestTarget; -import wicket.ajax.form.AjaxFormSubmitBehavior; -import wicket.markup.html.WebComponent; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.TextField; -import wicket.model.CompoundPropertyModel; +import org.apache.wicket.ajax.AjaxRequestTarget; +import org.apache.wicket.ajax.form.AjaxFormSubmitBehavior; +import org.apache.wicket.markup.html.WebComponent; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.TextField; +import org.apache.wicket.model.CompoundPropertyModel; + /** * Mock page used for testing executeAjaxEvent. Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndCheckGroup.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageWithFormAndCheckGroup.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndCheckGroup.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageWithFormAndCheckGroup.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndCheckGroup.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockPageWithFormAndCheckGroup.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockPageWithFormAndCheckGroup.java Tue Apr 10 11:15:14 2007 @@ -14,19 +14,20 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; import java.util.ArrayList; import java.util.List; -import wicket.ajax.AjaxRequestTarget; -import wicket.ajax.markup.html.form.AjaxSubmitLink; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.Check; -import wicket.markup.html.form.CheckGroup; -import wicket.markup.html.form.Form; -import wicket.model.Model; -import wicket.model.PropertyModel; +import org.apache.wicket.ajax.AjaxRequestTarget; +import org.apache.wicket.ajax.markup.html.form.AjaxSubmitLink; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.Check; +import org.apache.wicket.markup.html.form.CheckGroup; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.model.Model; +import org.apache.wicket.model.PropertyModel; + /** * Mock page with form and checkgroup. Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockResourceLinkPage.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockResourceLinkPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockResourceLinkPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockResourceLinkPage.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockResourceLinkPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/MockResourceLinkPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/MockResourceLinkPage.java Tue Apr 10 11:15:14 2007 @@ -14,11 +14,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; -import wicket.ResourceReference; -import wicket.markup.html.WebPage; -import wicket.markup.html.link.ResourceLink; +import org.apache.wicket.ResourceReference; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.link.ResourceLink; /** * Mock page for testing WicketTesters ability to test ResourceLinks Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/TagTesterTest.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/TagTesterTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/TagTesterTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/TagTesterTest.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/TagTesterTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/TagTesterTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/TagTesterTest.java Tue Apr 10 11:15:14 2007 @@ -14,7 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; + +import org.apache.wicket.util.tester.TagTester; import junit.framework.TestCase; Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterTest.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/WicketTesterTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/WicketTesterTest.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/WicketTesterTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/WicketTesterTest.java Tue Apr 10 11:15:14 2007 @@ -14,30 +14,34 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester; +package org.apache.wicket.util.tester; import java.util.Locale; +import org.apache.wicket.Component; +import org.apache.wicket.MockPageWithLink; +import org.apache.wicket.MockPageWithOneComponent; +import org.apache.wicket.Page; +import org.apache.wicket.Session; +import org.apache.wicket.ajax.AjaxEventBehavior; +import org.apache.wicket.ajax.AjaxRequestTarget; +import org.apache.wicket.ajax.markup.html.AjaxLink; +import org.apache.wicket.markup.html.PackageResource.PackageResourceBlockedException; +import org.apache.wicket.markup.html.basic.Label; +import org.apache.wicket.markup.html.form.TextField; +import org.apache.wicket.markup.html.link.Link; +import org.apache.wicket.request.target.coding.IRequestTargetUrlCodingStrategy; +import org.apache.wicket.util.tester.FormTester; +import org.apache.wicket.util.tester.ITestPageSource; +import org.apache.wicket.util.tester.WicketTester; +import org.apache.wicket.util.tester.MockPageWithFormAndAjaxFormSubmitBehavior.Pojo; +import org.apache.wicket.util.tester.apps_1.Book; +import org.apache.wicket.util.tester.apps_1.CreateBook; +import org.apache.wicket.util.tester.apps_1.MyMockApplication; +import org.apache.wicket.util.tester.apps_1.SuccessPage; +import org.apache.wicket.util.tester.apps_1.ViewBook; + import junit.framework.TestCase; -import wicket.Component; -import wicket.MockPageWithLink; -import wicket.MockPageWithOneComponent; -import wicket.Page; -import wicket.Session; -import wicket.ajax.AjaxEventBehavior; -import wicket.ajax.AjaxRequestTarget; -import wicket.ajax.markup.html.AjaxLink; -import wicket.markup.html.PackageResource.PackageResourceBlockedException; -import wicket.markup.html.basic.Label; -import wicket.markup.html.form.TextField; -import wicket.markup.html.link.Link; -import wicket.request.target.coding.IRequestTargetUrlCodingStrategy; -import wicket.util.tester.MockPageWithFormAndAjaxFormSubmitBehavior.Pojo; -import wicket.util.tester.apps_1.Book; -import wicket.util.tester.apps_1.CreateBook; -import wicket.util.tester.apps_1.MyMockApplication; -import wicket.util.tester.apps_1.SuccessPage; -import wicket.util.tester.apps_1.ViewBook; /** * Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/Book.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/Book.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/Book.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/Book.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/Book.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/Book.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/Book.java Tue Apr 10 11:15:14 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_1; +package org.apache.wicket.util.tester.apps_1; import java.io.Serializable; Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/CreateBook.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/CreateBook.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/CreateBook.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/CreateBook.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/CreateBook.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/CreateBook.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/CreateBook.java Tue Apr 10 11:15:14 2007 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_1; +package org.apache.wicket.util.tester.apps_1; -import wicket.Page; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.RequiredTextField; -import wicket.model.Model; -import wicket.model.PropertyModel; +import org.apache.wicket.Page; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.RequiredTextField; +import org.apache.wicket.model.Model; +import org.apache.wicket.model.PropertyModel; /** * @@ -64,7 +64,7 @@ } /** - * @see wicket.markup.html.form.Form#onSubmit() + * @see org.apache.wicket.markup.html.form.Form#onSubmit() */ public void onSubmit() { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/MyMockApplication.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/MyMockApplication.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/MyMockApplication.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/MyMockApplication.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/MyMockApplication.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/MyMockApplication.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/MyMockApplication.java Tue Apr 10 11:15:14 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_1; +package org.apache.wicket.util.tester.apps_1; -import wicket.util.tester.WicketTester; +import org.apache.wicket.util.tester.WicketTester; /** * @author Juergen Donnerstag Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/SuccessPage.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/SuccessPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/SuccessPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/SuccessPage.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/SuccessPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/SuccessPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/SuccessPage.java Tue Apr 10 11:15:14 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_1; +package org.apache.wicket.util.tester.apps_1; -import wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.WebPage; /** * Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/ViewBook.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/ViewBook.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/ViewBook.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/ViewBook.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/ViewBook.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_1/ViewBook.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_1/ViewBook.java Tue Apr 10 11:15:14 2007 @@ -14,12 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_1; +package org.apache.wicket.util.tester.apps_1; -import wicket.markup.html.WebPage; -import wicket.markup.html.basic.Label; -import wicket.markup.html.link.BookmarkablePageLink; -import wicket.model.PropertyModel; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.basic.Label; +import org.apache.wicket.markup.html.link.BookmarkablePageLink; +import org.apache.wicket.model.PropertyModel; /** * Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/LoginPage.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/LoginPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/LoginPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/LoginPage.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/LoginPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/LoginPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/LoginPage.java Tue Apr 10 11:15:14 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_2; +package org.apache.wicket.util.tester.apps_2; -import wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.WebPage; /** * Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/RedirectPage.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/RedirectPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/RedirectPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/RedirectPage.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/RedirectPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/RedirectPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/RedirectPage.java Tue Apr 10 11:15:14 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_2; +package org.apache.wicket.util.tester.apps_2; -import wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.WebPage; /** * Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/Test.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/Test.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/Test.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/Test.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/Test.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_2/Test.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_2/Test.java Tue Apr 10 11:15:14 2007 @@ -14,12 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_2; +package org.apache.wicket.util.tester.apps_2; + +import org.apache.wicket.authorization.IAuthorizationStrategy; +import org.apache.wicket.authorization.strategies.page.SimplePageAuthorizationStrategy; +import org.apache.wicket.util.tester.WicketTester; import junit.framework.TestCase; -import wicket.authorization.IAuthorizationStrategy; -import wicket.authorization.strategies.page.SimplePageAuthorizationStrategy; -import wicket.util.tester.WicketTester; /** * Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/ChoicePage.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_3/ChoicePage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/ChoicePage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_3/ChoicePage.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/ChoicePage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_3/ChoicePage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/ChoicePage.java Tue Apr 10 11:15:14 2007 @@ -14,30 +14,31 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_3; +package org.apache.wicket.util.tester.apps_3; import java.util.ArrayList; import java.util.List; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.Button; -import wicket.markup.html.form.Check; -import wicket.markup.html.form.CheckBox; -import wicket.markup.html.form.CheckBoxMultipleChoice; -import wicket.markup.html.form.CheckGroup; -import wicket.markup.html.form.ChoiceRenderer; -import wicket.markup.html.form.DropDownChoice; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.ListChoice; -import wicket.markup.html.form.ListMultipleChoice; -import wicket.markup.html.form.Radio; -import wicket.markup.html.form.RadioChoice; -import wicket.markup.html.form.RadioGroup; -import wicket.markup.html.list.ListItem; -import wicket.markup.html.list.ListView; -import wicket.model.CompoundPropertyModel; -import wicket.model.Model; -import wicket.util.tester.apps_1.Book; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.Button; +import org.apache.wicket.markup.html.form.Check; +import org.apache.wicket.markup.html.form.CheckBox; +import org.apache.wicket.markup.html.form.CheckBoxMultipleChoice; +import org.apache.wicket.markup.html.form.CheckGroup; +import org.apache.wicket.markup.html.form.ChoiceRenderer; +import org.apache.wicket.markup.html.form.DropDownChoice; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.ListChoice; +import org.apache.wicket.markup.html.form.ListMultipleChoice; +import org.apache.wicket.markup.html.form.Radio; +import org.apache.wicket.markup.html.form.RadioChoice; +import org.apache.wicket.markup.html.form.RadioGroup; +import org.apache.wicket.markup.html.list.ListItem; +import org.apache.wicket.markup.html.list.ListView; +import org.apache.wicket.model.CompoundPropertyModel; +import org.apache.wicket.model.Model; +import org.apache.wicket.util.tester.apps_1.Book; + /** * @author Ingram Chen Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/FormTesterTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_3/FormTesterTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/FormTesterTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_3/FormTesterTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/FormTesterTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_3/FormTesterTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_3/FormTesterTest.java Tue Apr 10 11:15:14 2007 @@ -14,17 +14,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_3; +package org.apache.wicket.util.tester.apps_3; import java.util.Arrays; import java.util.List; -import wicket.Page; -import wicket.WicketRuntimeException; -import wicket.WicketTestCase; -import wicket.util.tester.FormTester; -import wicket.util.tester.ITestPageSource; -import wicket.util.tester.apps_1.Book; +import org.apache.wicket.Page; +import org.apache.wicket.WicketRuntimeException; +import org.apache.wicket.WicketTestCase; +import org.apache.wicket.util.tester.FormTester; +import org.apache.wicket.util.tester.ITestPageSource; +import org.apache.wicket.util.tester.apps_1.Book; + /** * @author Ingram Chen Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/EmailPage.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_4/EmailPage.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/EmailPage.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_4/EmailPage.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/EmailPage.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_4/EmailPage.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/EmailPage.java Tue Apr 10 11:15:14 2007 @@ -14,13 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_4; +package org.apache.wicket.util.tester.apps_4; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.TextField; -import wicket.model.CompoundPropertyModel; -import wicket.validation.validator.EmailAddressValidator; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.TextField; +import org.apache.wicket.model.CompoundPropertyModel; +import org.apache.wicket.validation.validator.EmailAddressValidator; /** * @author Juergen Donnerstag Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/FormTesterTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_4/FormTesterTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/FormTesterTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_4/FormTesterTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/FormTesterTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_4/FormTesterTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_4/FormTesterTest.java Tue Apr 10 11:15:14 2007 @@ -14,11 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_4; +package org.apache.wicket.util.tester.apps_4; + +import org.apache.wicket.Session; +import org.apache.wicket.WicketTestCase; +import org.apache.wicket.util.tester.FormTester; -import wicket.Session; -import wicket.WicketTestCase; -import wicket.util.tester.FormTester; /** * @author Ingram Chen Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxLinkClickTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/AjaxLinkClickTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxLinkClickTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/AjaxLinkClickTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxLinkClickTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/AjaxLinkClickTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxLinkClickTest.java Tue Apr 10 11:15:14 2007 @@ -14,14 +14,15 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_5; +package org.apache.wicket.util.tester.apps_5; + +import org.apache.wicket.Page; +import org.apache.wicket.WicketTestCase; +import org.apache.wicket.ajax.AjaxRequestTarget; +import org.apache.wicket.ajax.markup.html.AjaxFallbackLink; +import org.apache.wicket.ajax.markup.html.AjaxLink; +import org.apache.wicket.util.tester.ITestPageSource; -import wicket.Page; -import wicket.WicketTestCase; -import wicket.ajax.AjaxRequestTarget; -import wicket.ajax.markup.html.AjaxFallbackLink; -import wicket.ajax.markup.html.AjaxLink; -import wicket.util.tester.ITestPageSource; /** * Test that the clickLink method also works with AjaxLinks @@ -43,7 +44,7 @@ /** * Make sure that our test flags are reset between every test. - * @see wicket.WicketTestCase#setUp() + * @see org.apache.wicket.WicketTestCase#setUp() */ protected void setUp() throws Exception { Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxSubmitLinkClickTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/AjaxSubmitLinkClickTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxSubmitLinkClickTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/AjaxSubmitLinkClickTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxSubmitLinkClickTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/AjaxSubmitLinkClickTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/AjaxSubmitLinkClickTest.java Tue Apr 10 11:15:14 2007 @@ -14,15 +14,16 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_5; +package org.apache.wicket.util.tester.apps_5; + +import org.apache.wicket.Page; +import org.apache.wicket.WicketTestCase; +import org.apache.wicket.ajax.AjaxRequestTarget; +import org.apache.wicket.ajax.markup.html.form.AjaxSubmitLink; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.util.tester.ITestPageSource; +import org.apache.wicket.util.tester.apps_5.MockPageWithFormAndLink.MockPojo; -import wicket.Page; -import wicket.WicketTestCase; -import wicket.ajax.AjaxRequestTarget; -import wicket.ajax.markup.html.form.AjaxSubmitLink; -import wicket.markup.html.form.Form; -import wicket.util.tester.ITestPageSource; -import wicket.util.tester.apps_5.MockPageWithFormAndLink.MockPojo; /** * Test that the clickLink method works with AjaxSubmitLinks Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithFormAndLink.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/MockPageWithFormAndLink.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithFormAndLink.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/MockPageWithFormAndLink.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithFormAndLink.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/MockPageWithFormAndLink.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithFormAndLink.java Tue Apr 10 11:15:14 2007 @@ -14,12 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_5; +package org.apache.wicket.util.tester.apps_5; -import wicket.markup.html.WebPage; -import wicket.markup.html.form.Form; -import wicket.markup.html.form.TextField; -import wicket.model.CompoundPropertyModel; +import org.apache.wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.form.Form; +import org.apache.wicket.markup.html.form.TextField; +import org.apache.wicket.model.CompoundPropertyModel; /** * Contains a form with a textfield on it. Also contains markup for a link, but Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithLink.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/MockPageWithLink.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithLink.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/MockPageWithLink.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithLink.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/tester/apps_5/MockPageWithLink.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/tester/apps_5/MockPageWithLink.java Tue Apr 10 11:15:14 2007 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.tester.apps_5; +package org.apache.wicket.util.tester.apps_5; -import wicket.markup.html.WebPage; +import org.apache.wicket.markup.html.WebPage; /** * Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/DurationTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/DurationTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/DurationTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/DurationTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/DurationTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/DurationTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/DurationTest.java Tue Apr 10 11:15:14 2007 @@ -14,15 +14,17 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.time; +package org.apache.wicket.util.time; import java.text.NumberFormat; import java.util.Locale; +import org.apache.wicket.util.string.StringValueConversionException; +import org.apache.wicket.util.time.Duration; + import junit.framework.Assert; import junit.framework.TestCase; -import wicket.util.string.StringValueConversionException; /** * Test cases for this object Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeMapTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeMapTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeMapTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeMapTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeMapTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeMapTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeMapTest.java Tue Apr 10 11:15:14 2007 @@ -14,12 +14,17 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.time; +package org.apache.wicket.util.time; import java.text.ParseException; import java.util.GregorianCalendar; import java.util.Locale; + +import org.apache.wicket.util.time.Time; +import org.apache.wicket.util.time.TimeFrame; +import org.apache.wicket.util.time.TimeMap; +import org.apache.wicket.util.time.TimeOfDay; import junit.framework.Assert; import junit.framework.TestCase; Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeOfDayTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeOfDayTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeOfDayTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeOfDayTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeOfDayTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeOfDayTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeOfDayTest.java Tue Apr 10 11:15:14 2007 @@ -14,8 +14,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.time; +package org.apache.wicket.util.time; + +import org.apache.wicket.util.time.TimeOfDay; import junit.framework.Assert; import junit.framework.TestCase; Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTest.java Tue Apr 10 11:15:14 2007 @@ -14,11 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.time; +package org.apache.wicket.util.time; import java.text.ParseException; import java.util.Calendar; + +import org.apache.wicket.util.time.Time; import junit.framework.Assert; import junit.framework.TestCase; Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTests.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeTests.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTests.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeTests.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTests.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/time/TimeTests.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/time/TimeTests.java Tue Apr 10 11:15:14 2007 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.time; +package org.apache.wicket.util.time; import junit.framework.Test; import junit.framework.TestSuite; @@ -30,7 +30,7 @@ */ public static Test suite() { - final TestSuite suite = new TestSuite("Test for wicket.util.time"); + final TestSuite suite = new TestSuite("Test for org.apache.wicket.util.time"); //$JUnit-BEGIN$ suite.addTest(new TestSuite(TimeTest.class)); Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/value/ValueMapTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/value/ValueMapTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/value/ValueMapTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/value/ValueMapTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/value/ValueMapTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/util/value/ValueMapTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/util/value/ValueMapTest.java Tue Apr 10 11:15:14 2007 @@ -14,7 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.util.value; +package org.apache.wicket.util.value; + +import org.apache.wicket.util.value.ValueMap; import junit.framework.TestCase; Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/validation/validator/EmailValidatorTest.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/validation/validator/EmailValidatorTest.java) URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/validation/validator/EmailValidatorTest.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/validation/validator/EmailValidatorTest.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/validation/validator/EmailValidatorTest.java&r2=527232 ============================================================================== --- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/wicket/validation/validator/EmailValidatorTest.java (original) +++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/validation/validator/EmailValidatorTest.java Tue Apr 10 11:15:14 2007 @@ -14,7 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package wicket.validation.validator; +package org.apache.wicket.validation.validator; + +import org.apache.wicket.validation.validator.EmailAddressValidator; import junit.framework.TestCase;
