aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/test/java/com/yahoo/vespa/testrunner/Expect.java
blob: 2f794d00ddee310aeba9dababaf14ee495880e23 (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
30
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
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;

}