Package nexj.core.testing.unit

Examples of nexj.core.testing.unit.UnitTestPlayer


               }
            }
         };
      }
     
      UnitTestPlayer player = new UnitTestPlayer(testLogger, m_container);

      String sLocale = getProperty("test.locale");

      if (sLocale != null)
      {
         player.setLocale(LocaleUtil.parse(sLocale));
      }

      player.setDebug(StringUtil.parseBoolean(getProperty("debug", "false")));
      player.setSystemUser(getProperty("test.admin"));
      player.run(m_objectList);

      if (m_container != null && J2EEUtil.CONTAINER == J2EEUtil.TEEE)
      {
         m_container.shutdown();
      }
View Full Code Here

TOP

Related Classes of nexj.core.testing.unit.UnitTestPlayer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.