Remove explicit default super-constructor calls
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / md / sal / binding / test / ConstantSchemaAbstractDataBrokerTest.java
1 /*
2  * Copyright (c) 2016 Red Hat, Inc. 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.md.sal.binding.test;
9
10 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
11
12 /**
13  * AbstractDataBrokerTest which creates the SchemaContext
14  * only once, and keeps it in a static, instead of re-recreating
15  * it for each Test, and is thus faster.
16  *
17  * @author Michael Vorburger
18  */
19 public class ConstantSchemaAbstractDataBrokerTest extends AbstractConcurrentDataBrokerTest {
20
21     public ConstantSchemaAbstractDataBrokerTest() {
22     }
23
24     public ConstantSchemaAbstractDataBrokerTest(final boolean useMTDataTreeChangeListenerExecutor) {
25         super(useMTDataTreeChangeListenerExecutor);
26     }
27
28     @Override
29     protected SchemaContext getSchemaContext() throws Exception {
30         return SchemaContextSingleton.getSchemaContext(super::getSchemaContext);
31     }
32
33 }