]> git.basschouten.com Git - openhab-addons.git/blob
f5f9608c2555f5fbfcf288494fdc244a2631e218
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.boschshc.internal.devices;
14
15 import org.openhab.core.config.core.Configuration;
16
17 /**
18  * Abstract unit test implementation for device handlers.
19  *
20  * @author David Pace - Initial contribution
21  *
22  * @param <T> type of the device handler to be tested
23  */
24 public abstract class AbstractBoschSHCDeviceHandlerTest<T extends BoschSHCDeviceHandler>
25         extends AbstractSHCHandlerTest<T> {
26
27     @Override
28     protected Configuration getConfiguration() {
29         Configuration configuration = super.getConfiguration();
30         configuration.put("id", getDeviceID());
31         return configuration;
32     }
33
34     protected abstract String getDeviceID();
35 }