summaryrefslogtreecommitdiffstats
path: root/linguistics/src/test/java/com/yahoo/language/process/ProcessingExceptionTestCase.java
blob: 08a0f0794cb46de4ad1cd7568c3916618ada1663 (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 2017 Yahoo Holdings. 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 <a href="mailto:simon@yahoo-inc.com">Simon Thoresen Hult</a>
 */
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());
    }

}