Package org.jboss.bootstrap

Examples of org.jboss.bootstrap.NoInitServerImpl


   @Test
   public void testCleanShutdownWithNoInit() throws Exception
   {

      // Create and perform minimal initialization upon a new server
      Server server = new NoInitServerImpl();
      server.init(new Properties());

      // Startup and shutdown
      try
      {
         server.start();
         server.shutdown();
      }
      catch (Exception e)
      {
         e.printStackTrace();
         TestCase.fail("Startup/shutdown sequence without proper configuration should be clean, got exception: " + e);
View Full Code Here

TOP

Related Classes of org.jboss.bootstrap.NoInitServerImpl

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.