Thank you for answer, I tried to override it and the test started, but it 
breaks the application.

 I get 

WARNING: No active application scope
  | java.lang.IllegalStateException: No active application scope
  |         at org.jboss.seam.core.Init.instance(Init.java:75)
  | 

after its work.

And before test there is warning:

"There should only be one Seam phase listener per application"


So the problem is in method BaseSeamTest.init:

   public void init() throws Exception
  |    {
  |       startJbossEmbeddedIfNecessary(); // We should skip it
  |       
  |       application = new SeamApplication( new MockApplication() ); // reuse 
here existsing application
  |       phases = new SeamPhaseListener(); // reuse existing phase listener
  | 
  |       servletContext = new MockServletContext(); // reuse context
  |       initServletContext( servletContext.getInitParameters() ); // don't 
initialize it
  | 
  | // And more and more...
  | 
  |       ServletLifecycle.beginApplication(servletContext);
  |       new Initialization(servletContext).create().init();
  |       ( (Init) servletContext.getAttribute( 
Seam.getComponentName(Init.class) ) ).setDebug(false);
  |       conversationViewRootAttributes = new HashMap<String, Map>();
  |       seamFilter = createSeamFilter();
  | 
  |       for (ELResolver elResolver : getELResolvers())
  |       {
  |          application.addELResolver(elResolver);
  |       }
  |       
  |    }

I mean, it looks like there should be done a lot of things to use tests in 
working application for testing deployment and web server compatibility.

Am I right or there is more simple way?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4102580#4102580

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4102580
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to