You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2011/07/06 07:57:06 UTC

svn commit: r1143255 - in /wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup: ./ xhtml/ xhtml/WellFormedXmlTest.java

Author: mgrigorov
Date: Wed Jul  6 05:57:06 2011
New Revision: 1143255

URL: http://svn.apache.org/viewvc?rev=1143255&view=rev
Log:
WICKET-3816 Patch, junit test to clean up markup files


Added:
    wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup/
    wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup/xhtml/
    wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup/xhtml/WellFormedXmlTest.java

Added: wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup/xhtml/WellFormedXmlTest.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup/xhtml/WellFormedXmlTest.java?rev=1143255&view=auto
==============================================================================
--- wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup/xhtml/WellFormedXmlTest.java (added)
+++ wicket/trunk/wicket-examples/src/test/java/org/apache/wicket/util/markup/xhtml/WellFormedXmlTest.java Wed Jul  6 05:57:06 2011
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.wicket.util.markup.xhtml;
+
+import org.junit.Test;
+
+/**
+ * Checks that the html markup files are well formed xml-s.
+ * 
+ * @author akiraly
+ */
+public class WellFormedXmlTest extends WellFormedXmlTestCase
+{
+	@Test
+	@Override
+	public void testMarkupFiles()
+	{
+		super.testMarkupFiles();
+	}
+}