blob: 09b3fe3799df5103a2801410a270493414335c89 [file] [log] [blame]
Thomas Vachuska02aeb032015-01-06 22:36:30 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onlab.junit;
17
18import org.junit.Test;
19
20import static org.junit.Assert.assertEquals;
21import static org.junit.Assert.assertSame;
22
23/**
24 * Base for exception tests.
25 */
26public abstract class ExceptionTest {
27
28 protected static final Throwable CAUSE = new RuntimeException("boom");
29 protected static final String MESSAGE = "Uh oh.... boom";
30
31 protected abstract Exception getDefault();
32 protected abstract Exception getWithMessage();
33 protected abstract Exception getWithMessageAndCause();
34
35 @Test
36 public void noMessageNoCause() {
37 Exception e = getDefault();
38 assertEquals("incorrect message", null, e.getMessage());
39 assertEquals("incorrect cause", null, e.getCause());
40 }
41
42 @Test
43 public void withMessage() {
44 Exception e = getWithMessage();
45 assertEquals("incorrect message", MESSAGE, e.getMessage());
46 assertEquals("incorrect cause", null, e.getCause());
47 }
48
49 @Test
50 public void withCause() {
51 Exception e = getWithMessageAndCause();
52 assertEquals("incorrect message", MESSAGE, e.getMessage());
53 assertSame("incorrect cause", CAUSE, e.getCause());
54 }
55}