public class SampleBasedTrendAnalyzer implements TrendAnalyzer
Trend analyzer which compares test execution with sample data from previous executions
| Constructor and Description |
|---|
SampleBasedTrendAnalyzer()
Trend analyzer which compares test execution with sample data from previous executions
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<cz.encircled.jput.model.PerfConstraintViolation> |
analyzeTestTrend(PerfTestExecution execution,
java.util.List<java.lang.Long> sample)
sample represents times of previous executions in ms, which is used for trend analysis
|
java.util.List<java.lang.Long> |
collectRuns(java.util.Collection<cz.encircled.jput.model.PerfTestExecution> sample) |
analyzeTestTrendpublic SampleBasedTrendAnalyzer()
Trend analyzer which compares test execution with sample data from previous executions
public java.util.List<cz.encircled.jput.model.PerfConstraintViolation> analyzeTestTrend(PerfTestExecution execution, java.util.List<java.lang.Long> sample)
sample represents times of previous executions in ms, which is used for trend analysis
execution - current test executionpublic java.util.List<java.lang.Long> collectRuns(java.util.Collection<cz.encircled.jput.model.PerfTestExecution> sample)