All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jupiter.tools.stress.test.concurrency.testrunner.TestRunnerSettings Maven / Gradle / Ivy

package com.jupiter.tools.stress.test.concurrency.testrunner;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

/**
 * Created on 13.09.2018.
 *
 * @author Korovin Anatoliy
 */
@Getter
@Setter
@AllArgsConstructor
public class TestRunnerSettings {
    /**
     * count of iterations to run test-case
     */
    private int iterationCount;

    /**
     * count of available threads
     */
    private int threadCount;

    /**
     * time limit to test execution
     */
    private Duration timeout;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy