0509ef9e54e571bb66b8d1ddbc30b646d4301c82
[hc2vpp.git] /
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
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  */
16
17 package io.fd.honeycomb.vpp.test.read;
18
19 import static org.junit.Assert.assertNotNull;
20
21 import io.fd.honeycomb.translate.spi.read.ListReaderCustomizer;
22 import org.junit.Test;
23 import org.opendaylight.yangtools.concepts.Builder;
24 import org.opendaylight.yangtools.yang.binding.DataObject;
25 import org.opendaylight.yangtools.yang.binding.Identifiable;
26 import org.opendaylight.yangtools.yang.binding.Identifier;
27 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
28
29 /**
30  * Generic test for classes implementing {@link ListReaderCustomizer} interface.
31  *
32  * @param <D> Specific DataObject derived type (Identifiable), that is handled by this customizer
33  * @param <K> Specific Identifier for handled type (D)
34  * @param <B> Specific Builder for handled type (D)
35  */
36 public abstract class ListReaderCustomizerTest<D extends DataObject & Identifiable<K>, K extends Identifier<D>, B extends Builder<D>> extends
37     ReaderCustomizerTest<D, B> {
38
39     protected ListReaderCustomizerTest(Class<D> dataObjectClass) {
40         super(dataObjectClass);
41     }
42
43     @Override
44     protected ListReaderCustomizer<D, K, B> getCustomizer() {
45         return ListReaderCustomizer.class.cast(super.getCustomizer());
46     }
47
48     @Test
49     public void testGetBuilder() throws Exception {
50         assertNotNull(getCustomizer().getBuilder(InstanceIdentifier.create(dataObjectClass)));
51     }
52 }