Package org.springmodules.javaspaces.blitz

Examples of org.springmodules.javaspaces.blitz.NullSpaceFactoryBean


  public void testFactory() throws Exception {
    assertNotNull(space);
  }

  public void testNullSpace() throws Exception {
    NullSpaceFactoryBean spaceFactory = new NullSpaceFactoryBean();
    spaceFactory.afterPropertiesSet();
    JavaSpace nullSpace = (JavaSpace) spaceFactory.getObject();
    assertNotNull(nullSpace);
  }
View Full Code Here

TOP

Related Classes of org.springmodules.javaspaces.blitz.NullSpaceFactoryBean

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.