Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-common / src / test / java / org / opendaylight / yangtools / yang / common / OperationFailedExceptionTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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.yangtools.yang.common;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertTrue;
12
13 import org.junit.Test;
14
15 public class OperationFailedExceptionTest {
16
17     @Test
18     public void testOperationFailedException() {
19         final Throwable cause = new Throwable("mock cause");
20         final RpcError rpcErrorShort = RpcResultBuilder.newError(RpcError.ErrorType.RPC, "tag", "msg");
21         final OperationFailedException operationFailedException1 = new OperationFailedException("error msg", cause,
22                 rpcErrorShort);
23         final OperationFailedException operationFailedException2 = new OperationFailedException("error msg",
24                 rpcErrorShort);
25         assertEquals(operationFailedException1.getErrorList(), operationFailedException2.getErrorList());
26         assertTrue(operationFailedException1.toString().contains("error msg"));
27     }
28 }