String performance and maintenability
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / UnknownHistoryExceptionTest.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.access.commands;
9
10 import static org.junit.Assert.assertNull;
11 import static org.junit.Assert.assertTrue;
12
13 import org.opendaylight.controller.cluster.access.concepts.RequestException;
14 import org.opendaylight.controller.cluster.access.concepts.RequestExceptionTest;
15
16 public class UnknownHistoryExceptionTest extends RequestExceptionTest<UnknownHistoryException> {
17
18     private static final RequestException OBJECT = new UnknownHistoryException(100L);
19     private static final RequestException OBJECT_NULL_PARAM = new UnknownHistoryException(null);
20
21     @Override
22     protected void isRetriable() {
23         assertTrue(OBJECT.isRetriable());
24     }
25
26     @Override
27     protected void checkMessage() {
28         String message = OBJECT.getMessage();
29         assertTrue("Last known history is 100".equals(message));
30         message = OBJECT_NULL_PARAM.getMessage();
31         assertTrue("Last known history is null".equals(message));
32         assertNull(OBJECT.getCause());
33     }
34
35 }