]> git.basschouten.com Git - openhab-addons.git/blob
7004bd49a190ef74c1a05cf469419f11874c73a1
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.loxone.internal.controls;
14
15 import org.junit.jupiter.api.BeforeEach;
16
17 /**
18  * Test class for (@link LxControlLeftRightAnalog}
19  *
20  * @author Pawel Pieczul - initial contribution
21  *
22  */
23 public class LxControlLeftRightAnalogTest extends LxControlUpDownAnalogTest {
24     @Override
25     @BeforeEach
26     public void setup() {
27         min = 1072.123;
28         max = 1123.458;
29         step = 23.987;
30         format = "value: %.2f";
31         setupControl("131b1a96-02b9-f6e9-ffff403fb0c34b9e", "0b734138-037d-034e-ffff403fb0c34b9e",
32                 "0fe650c2-0004-d446-ffff504f9410790f", "Left Right Analog Input");
33     }
34 }