aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/annotation/AnnotationTypesTestCase.java
blob: 85f3a328104327db140c8ca58b54daec81f12f04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.annotation;

import com.yahoo.document.datatypes.DoubleFieldValue;
import org.junit.Test;

import static org.junit.Assert.fail;

/**
 * @author Simon Thoresen Hult
 */
public class AnnotationTypesTestCase {

    @Test
    public void requireThatProximityBreakAcceptsDoubleWeight() {
        try {
            new Annotation(AnnotationTypes.PROXIMITY_BREAK, new DoubleFieldValue(6.9));
        } catch (Exception e) {
            fail("this is required for ticket #665166, do not change");
        }
    }
}