You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2016/01/02 16:10:44 UTC

wicket git commit: WICKET-6059 improved test cases.

Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x 25a6d4223 -> 897c2c387


WICKET-6059 improved test cases.


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/897c2c38
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/897c2c38
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/897c2c38

Branch: refs/heads/wicket-7.x
Commit: 897c2c387ede7f2d71250f2ce878c52e010b534b
Parents: 25a6d42
Author: Andrea Del Bene <ad...@apache.org>
Authored: Sat Jan 2 16:09:16 2016 +0100
Committer: Andrea Del Bene <ad...@apache.org>
Committed: Sat Jan 2 16:09:16 2016 +0100

----------------------------------------------------------------------
 .../org/apache/wicket/markup/html/border/ComponentBorderTest.java  | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/897c2c38/wicket-core/src/test/java/org/apache/wicket/markup/html/border/ComponentBorderTest.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/java/org/apache/wicket/markup/html/border/ComponentBorderTest.java b/wicket-core/src/test/java/org/apache/wicket/markup/html/border/ComponentBorderTest.java
index 8fed060..7761a18 100644
--- a/wicket-core/src/test/java/org/apache/wicket/markup/html/border/ComponentBorderTest.java
+++ b/wicket-core/src/test/java/org/apache/wicket/markup/html/border/ComponentBorderTest.java
@@ -117,11 +117,13 @@ public class ComponentBorderTest extends WicketTestCase
 	public void borderWithEnclosurePage() throws Exception
 	{
 		tester.startPage(BorderWithEnclosurePage.class);
+		tester.assertRenderedPage(BorderWithEnclosurePage.class);
 	}
 	
 	@Test
 	public void borderWithAutoLabel() throws Exception
 	{
 		tester.startPage(BorderWithAutoLabelPage.class);
+		tester.assertRenderedPage(BorderWithAutoLabelPage.class);
 	}
 }