Changeset 2027


Ignore:
Timestamp:
07/23/15 13:47:03 (9 years ago)
Author:
sherbold
Message:
  • updated tests
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-uml-test/src/test/java/de/ugoe/cs/autoquest/plugin/uml/UMLUtilsTest.java

    r2021 r2027  
    401401        int numberOfTestCases = Integer.parseInt(properties.getProperty("testcases.number")); 
    402402        int testCaseMinLength = Integer.parseInt(properties.getProperty("testcases.minlenth", "1")); 
     403        long maxIterValidSequence = Long.parseLong(properties.getProperty("testcases.maxIterValid", "100")); 
    403404        int testCaseMaxLength = 
    404405            Integer.parseInt(properties.getProperty("testcases.maxlength", "100")); 
     
    406407        RandomWalkGenerator testGenerator = 
    407408            new RandomWalkGenerator(numberOfTestCases, testCaseMinLength, testCaseMaxLength, true, 
    408                                     maxIter); 
     409                                    maxIter, maxIterValidSequence); 
    409410        return SOAPUtils.dropInvalidResponseRequestPairs(testGenerator.generateTestSuite(usageProfile)); 
    410411    } 
Note: See TracChangeset for help on using the changeset viewer.