Merge "Bug 865: Fixed use of removed deprecated YANGInstanceIdentifier methods."
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / test / java / org / opendaylight / controller / protobuff / messages / transaction / ShardTransactionChainMessagesTest.java
1 /*
2  *
3  *  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  *  This program and the accompanying materials are made available under the
6  *  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  *  and is available at http://www.eclipse.org/legal/epl-v10.html
8  *
9  */
10
11 package org.opendaylight.controller.protobuff.messages.transaction;
12
13 import org.junit.Test;
14 import org.opendaylight.controller.protobuff.messages.AbstractMessagesTest;
15
16 /**
17  * This test case is present to ensure that if others have used proper version of protocol buffer
18  * for the ShardTransactionChain.proto messages
19  *
20  * If a different version of protocol buffer and there is change in serializaiton format
21  * this test would break as we are comparing with protocol buffer 2.5 generated
22  * serialized data.
23  *
24  * @author: syedbahm
25  *
26  */
27
28
29 public class ShardTransactionChainMessagesTest extends AbstractMessagesTest {
30
31   @Override
32   @Test
33   public void verifySerialization() throws Exception {
34   }
35
36   @Override
37   public String getTestFileName() {
38     return ShardTransactionChainMessagesTest.class.getSimpleName();
39   }
40
41
42
43 }