Package org.apache.oodt.cas.cli.option.require.RequirementRule

Examples of org.apache.oodt.cas.cli.option.require.RequirementRule.Relation


      assertNull(actionDependency.getRelation());
   }

   public void testVariableSetting() {
      String actionName = "operation";
      Relation relation = Relation.OPTIONAL;
      ActionDependencyRule actionDependency = new ActionDependencyRule(
            actionName, relation);
      assertEquals(actionName, actionDependency.getActionName());
      assertEquals(relation, actionDependency.getRelation());
View Full Code Here


      assertEquals(relation, actionDependency.getRelation());
   }

   public void testGetRelation() {
      String actionName = "operation";
      Relation relation = Relation.OPTIONAL;
      ActionDependencyRule actionDependency = new ActionDependencyRule(
            actionName, relation);
      assertEquals(relation,
            actionDependency.getRelation(createAction(actionName)));
   }
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.cli.option.require.RequirementRule.Relation

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.