Updated Branches: refs/heads/master 8d24cbdd2 -> a9173f9a7
TAP5-2070 hook new test apps into test chain Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/a9173f9a Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/a9173f9a Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/a9173f9a Branch: refs/heads/master Commit: a9173f9a7c86f2b65fa2b4d9f1b430f2e40a161b Parents: 2d5fb4b Author: Massimo Lusetti <[email protected]> Authored: Mon Aug 5 19:45:03 2013 +0200 Committer: Massimo Lusetti <[email protected]> Committed: Mon Aug 5 19:48:15 2013 +0200 ---------------------------------------------------------------------- tapestry-core/src/test/conf/testng.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a9173f9a/tapestry-core/src/test/conf/testng.xml ---------------------------------------------------------------------- diff --git a/tapestry-core/src/test/conf/testng.xml b/tapestry-core/src/test/conf/testng.xml index 0fc5add..9e8921a 100644 --- a/tapestry-core/src/test/conf/testng.xml +++ b/tapestry-core/src/test/conf/testng.xml @@ -102,4 +102,19 @@ <package name="org.apache.tapestry5.integration.pagetester"/> </packages> </test> + + <test name="Activation Context Tests" enabled="true"> + <parameter name="tapestry.web-app-folder" value="src/test/activationctx"/> + <packages> + <package name="org.apache.tapestry5.integration.activationctx"/> + </packages> + </test> + + <test name="Activation Context Tests 2 old behavior" enabled="true"> + <parameter name="tapestry.web-app-folder" value="src/test/activationctx2"/> + <packages> + <package name="org.apache.tapestry5.integration.activationctx2"/> + </packages> + </test> + </suite>
