aboutsummaryrefslogtreecommitdiffstats
path: root/application/src/test/java/com/yahoo/application/container/MockServer.java
blob: 901e7e26eba6a1b0b5e1b5a163961a69ae1746b1 (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
31
32
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.application.container;

import com.yahoo.jdisc.service.AbstractServerProvider;
import com.yahoo.jdisc.service.CurrentContainer;

/**
 * @author Christian Andersen
 */
public class MockServer extends AbstractServerProvider {

    private boolean started = false;

    public MockServer(CurrentContainer container) {
        super(container);
    }

    @Override
    public void start() {
        started = true;
    }

    @Override
    public void close() {

    }

    public boolean isStarted() {
        return started;
    }

}