Allow DynamicTest to launch independently
Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/526b647a Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/526b647a Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/526b647a Branch: refs/heads/master Commit: 526b647a2b20f9c2ff6b0579bc12eb1b88f7176c Parents: 4a07baf Author: Howard M. Lewis Ship <[email protected]> Authored: Tue Aug 27 12:33:28 2013 +0530 Committer: Howard M. Lewis Ship <[email protected]> Committed: Tue Aug 27 12:33:28 2013 +0530 ---------------------------------------------------------------------- .../org/apache/tapestry5/integration/app1/DynamicTest.groovy | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/526b647a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/DynamicTest.groovy ---------------------------------------------------------------------- diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/DynamicTest.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/DynamicTest.groovy index f18d20a..e4d11d8 100644 --- a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/DynamicTest.groovy +++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/DynamicTest.groovy @@ -15,8 +15,10 @@ package org.apache.tapestry5.integration.app1 import org.apache.tapestry5.integration.TapestryCoreTestCase +import org.apache.tapestry5.test.TapestryTestConfiguration import org.testng.annotations.Test +@TapestryTestConfiguration(webAppFolder = "src/test/app1") class DynamicTest extends TapestryCoreTestCase { void clickThru(link) {
