aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/test/java/com/yahoo/vespa/testrunner/Expect.java
blob: 88278b3feb69685456e2f7a6f79c01e388a0460c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.yahoo.vespa.testrunner;

import org.junit.jupiter.api.Tag;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * @author jonmv
 */
@Retention(RetentionPolicy.RUNTIME)
@Tag("integration")
public @interface Expect {

    int status();

    long aborted() default 0;

    long skipped() default 0;

    long successful() default 0;

    long inconclusive() default 0;

    long failed() default 0;

    long error() default 0;

}