summaryrefslogtreecommitdiffstats
path: root/clustercontroller-apps/src/test/java/com/yahoo/vespa/clustercontroller/apps/clustercontroller/StatusHandlerTest.java
blob: 7a204aa791d95592cc2938ad1c59b1f8b607a08f (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.Test;

public class StatusHandlerTest {

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

}