2f31adddd2649a06cd6609da5525387bb7618381
[honeycomb.git] / v3po / v3po2vpp / src / test / java / io / fd / honeycomb / translate / v3po / vppstate / BridgeDomainCustomizerTest.java
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.translate.v3po.vppstate;
18
19 import io.fd.honeycomb.translate.spi.read.ReaderCustomizer;
20 import io.fd.honeycomb.translate.vpp.util.NamingContext;
21 import io.fd.honeycomb.vpp.test.read.ListReaderCustomizerTest;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.vpp.state.BridgeDomainsBuilder;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.vpp.state.bridge.domains.BridgeDomain;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.vpp.state.bridge.domains.BridgeDomainBuilder;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.vpp.state.bridge.domains.BridgeDomainKey;
26
27 public class BridgeDomainCustomizerTest
28     extends ListReaderCustomizerTest<BridgeDomain, BridgeDomainKey, BridgeDomainBuilder> {
29
30     private NamingContext bdContext;
31     private NamingContext interfacesContext;
32
33     public BridgeDomainCustomizerTest() {
34         super(BridgeDomain.class, BridgeDomainsBuilder.class);
35     }
36
37     @Override
38     public void setUp() {
39         bdContext = new NamingContext("generatedBdName", "bd-test-instance");
40         interfacesContext = new NamingContext("generatedIfaceName", "ifc-test-instance");
41     }
42
43     @Override
44     protected ReaderCustomizer<BridgeDomain, BridgeDomainBuilder> initCustomizer() {
45         return new BridgeDomainCustomizer(api, bdContext);
46     }
47 }