73ee6d68109ad7f55e6407b20ad013dbef108a4b
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / AbstractTransactionRequestTest.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 org.junit.Assert;
11 import org.junit.Test;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13
14 public abstract class AbstractTransactionRequestTest<T extends AbstractLocalTransactionRequest> {
15     abstract T object();
16
17     @Test(expected = UnsupportedOperationException.class)
18     public void testExternalizableProxy() {
19         object().externalizableProxy(ABIVersion.BORON);
20     }
21
22     @Test
23     public void cloneAsVersionTest() {
24         Assert.assertEquals(object(), object().cloneAsVersion(ABIVersion.BORON));
25     }
26 }