Package org.jamesii.core.plugins.metadata

Examples of org.jamesii.core.plugins.metadata.ComponentState


  /**
   * Tests state transitions.
   */
  public void testComponentLifeCycleTransitions() {

    ComponentState myState = ComponentState.UNDER_DEVELOPMENT;

    myState = ComponentState.change(myState, ComponentAction.SUBMIT);
    assertEquals(ComponentState.UNTESTED, myState);

    myState = ComponentState.change(myState, ComponentAction.FINISH_TEST);
View Full Code Here

TOP

Related Classes of org.jamesii.core.plugins.metadata.ComponentState

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.