2 * Copyright (c) 2016 Cisco and/or its affiliates.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package io.fd.hc2vpp.common.test.read;
19 import io.fd.honeycomb.translate.spi.read.InitializingListReaderCustomizer;
20 import org.opendaylight.yangtools.concepts.Builder;
21 import org.opendaylight.yangtools.yang.binding.DataObject;
22 import org.opendaylight.yangtools.yang.binding.Identifiable;
23 import org.opendaylight.yangtools.yang.binding.Identifier;
26 * Generic test for classes implementing {@link InitializingListReaderCustomizer} interface.
28 * @param <D> Specific DataObject derived type (Identifiable), that is handled by this customizer
29 * @param <K> Specific Identifier for handled type (D)
30 * @param <B> Specific Builder for handled type (D)
32 public abstract class InitializingListReaderCustomizerTest<D extends DataObject & Identifiable<K>, K extends Identifier<D>, B extends Builder<D>> extends
33 ListReaderCustomizerTest<D, K, B> {
35 protected InitializingListReaderCustomizerTest(
36 final Class<D> dataObjectClass,
37 final Class<? extends Builder<? extends DataObject>> parentBuilderClass) {
38 super(dataObjectClass, parentBuilderClass);
42 protected InitializingListReaderCustomizer<D, K, B> getCustomizer() {
43 return InitializingListReaderCustomizer.class.cast(super.getCustomizer());