summaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/TemporaryStructuredDataTypeTestCase.java
blob: d785faa146a6b968cdbbcf22481fe0f88076e55b (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 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document;

import org.junit.Test;

import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.not;
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 TemporaryStructuredDataTypeTestCase {
    @Test
    public void basic() {
        TemporaryStructuredDataType type = TemporaryStructuredDataType.create("banana");
        assertThat(type.getName(), equalTo("banana"));
        int originalId = type.getId();
        type.setName("apple");
        assertThat(type.getName(), equalTo("apple"));
        assertThat(originalId, not(equalTo(type.getId())));
    }
}