Package fitnesse.slim.instructions

Examples of fitnesse.slim.instructions.InstructionResult


      return result;
    }

    public Object executeStatement(Object statement) {
      Instruction instruction = InstructionFactory.createInstruction(asStatementList(statement), methodNameTranslator);
      InstructionResult result = instruction.execute(executor);
      Object resultObject;
      if (result.hasResult() || result.hasError()) {
        resultObject = result.getResult();
      } else {
        resultObject = null;
      }
      return asList(instruction.getId(), resultObject);
    }
View Full Code Here

TOP

Related Classes of fitnesse.slim.instructions.InstructionResult

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.