aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-apps/src/test/java/com/yahoo/vespa/clustercontroller/apps/clustercontroller/StatusHandlerTest.java
blob: d4eb84677dcb955eb6904f65b574d2fd29f5e7ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.apps.clustercontroller;

import org.junit.jupiter.api.Test;

public class StatusHandlerTest {

    @Test
    void testSimple() {
        ClusterController controller = new ClusterController();
        StatusHandler handler = new StatusHandler(controller, StatusHandler.testContext());
    }

}