aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/annotation/AnnotationTypesTestCase.java
blob: 98c119d0df2d51313a5e048c6098cc15ca64220f (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 Yahoo. 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");
        }
    }
}