aboutsummaryrefslogtreecommitdiffstats
path: root/linguistics/src/test/java/com/yahoo/language/process/ProcessingExceptionTestCase.java
blob: f056d87b26f1df667d9511358e4e7ba076b9b472 (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
25
26
27
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.language.process;

import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;

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

    @Test
    public void requireThatMessageCanBeSet() {
        assertEquals("foo", new ProcessingException("foo").getMessage());
    }

    @Test
    public void requireThatMessageAndCauseCanBeSet() {
        Throwable t = new Throwable();
        ProcessingException e = new ProcessingException("bar", t);
        assertEquals("bar", e.getMessage());
        assertSame(t, e.getCause());
    }

}