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

com.fillumina.performance.template.AssertionSuiteBuilder Maven / Gradle / Ivy

Go to download

Configurable tool to easily compare performances of different code snippets and to take performance telemetry of a running application.

The newest version!
package com.fillumina.performance.template;

import com.fillumina.performance.consumer.assertion.AssertPerformanceForExecutionSuite;
import com.fillumina.performance.consumer.assertion.SuiteExecutionAssertion;

/**
 *
 * @author Francesco Illuminati
 */
public class AssertionSuiteBuilder {

    private AssertPerformanceForExecutionSuite assertion;

    public SuiteExecutionAssertion withTolerance(final float percentage) {
        assertion = (AssertPerformanceForExecutionSuite)
                AssertPerformanceForExecutionSuite.withTolerance(percentage);
        return assertion;
    }

    AssertPerformanceForExecutionSuite getAssertPerformanceForExecutionSuite() {
        return assertion;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy