aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/test/java/com/yahoo/vespa/test/samples/TimingOutTest.java
blob: a8f314d2973d28b9b1c8c618a93c4f4c856870ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.test.samples;

import com.yahoo.vespa.testrunner.Expect;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;

import java.util.concurrent.TimeUnit;

@Expect(error = 1, status = 5)
public class TimingOutTest {

    @Test
    @Timeout(value = 1, unit = TimeUnit.MILLISECONDS)
    void test() throws InterruptedException {
        Thread.sleep(10_000);
    }

}