aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/vespa/model/content/ContentBaseTest.java
blob: 0432b181c2cc2df264dd3caa5ed2d1b453e25038 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.content;

public class ContentBaseTest {
    public static String getHosts() {
        return "<?xml version='1.0' encoding='utf-8' ?>" +
                "<hosts>  " +
                "  <host name='foo'>" +
                "    <alias>node0</alias>" +
                "  </host>" +
                "</hosts>";
    }
}