Package it.itc.irst.nusmv.cli

Examples of it.itc.irst.nusmv.cli.ExecuteNuSMV


        monitor.subTask("Loading verification rule stream");
        InputStream ruleStream = rule.getVerificationRule();
        monitor.worked(1);
             
        monitor.subTask("Passing to SMV verification");
        ExecuteNuSMV exec = new ExecuteNuSMV();
        List<String> output = exec.execute( new SequenceInputStream(modelStream, ruleStream) );
        monitor.worked(1);
       
        // add to log?
        if (shouldLog) {
          log.add("Executing rule " + rule + "...");
View Full Code Here


    } catch (NullPointerException e) {
      throw new RuntimeException("A file might be missing from the bundle: " + e.getMessage(), e);
    }

    // get the crocopat output
    ExecuteNuSMV exec = new ExecuteNuSMV();
    List<String> r = exec.execute(smv.openStream());
   
    assertNotNull("Result should not be null", r);
   
    // should have passed with some log info
    assertFalse("Expected some results", r.size() == 0);
View Full Code Here

TOP

Related Classes of it.itc.irst.nusmv.cli.ExecuteNuSMV

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.