File size: 293 Bytes
6c50d1f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#! /bin/bash
end=$((SECONDS+3600))
current_path=$(pwd)
path_to_file="$current_path/../../../specs/openapi_json"

while [ $SECONDS -lt $end ]; do
    java -jar ../../../evomaster.jar --blackBox true --bbSwaggerUrl file://$path_to_file/spotify.json --maxTime 1h --outputFormat JAVA_JUNIT_4
done