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

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

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.nullValue;
import static org.junit.Assert.assertThat;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 * @since 5.1.10
 */
public class TemporaryDataTypeTestCase {
    @Test
    public void requireNulls() {
        TemporaryDataType type = new TemporaryDataType(0);
        assertThat(type.createFieldValue(new Object()), nullValue());
        assertThat(type.createFieldValue(), nullValue());
        assertThat(type.getValueClass(), nullValue());
        assertThat(type.isValueCompatible(new StringFieldValue("")), is(false));
    }
}