It turned out that changing:
String appName = "MyApp";
to
String appName = "App";
got rid of this error. I think that Tapestry is appending Module (so
it becomes AppModule) to figure out what class to launch the ioc
from. Since my application (created from the mvn quickstart) uses
AppMo
I think you have some kind of issue with the dependencies; you must
not have all the necessary dependencies listed for your project, or
you are pointing to some mismatched dependencies.
On Feb 19, 2008 6:24 PM, Mark W. Shead <[EMAIL PROTECTED]> wrote:
> Here is what I've found so far:
>
> If I str
Here is what I've found so far:
If I strip everything with @Inject (logger, other pages, etc) out of
the page being tested (and out of any pages referenced by that page),
I can get it to run. Is there something additional I need to do to
make it work with pages that have @Inject in them?
I am trying to use the PageTester functionality as described in:
http://tapestry.formos.com/nightly/tapestry5/tapestry-core/guide/unit-testing-pages.html
My test looks like:
@Test
public void testFrontPage() {
String appPackage = "net.mydomain.package";