]> git.basschouten.com Git - openhab-addons.git/blob
b4a39e745f198b7977aa7e0d9e5d97a75fda93c6
[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.enigma2.internal;
14
15 import static org.hamcrest.MatcherAssert.assertThat;
16 import static org.hamcrest.Matchers.is;
17
18 import org.eclipse.jdt.annotation.NonNullByDefault;
19 import org.junit.jupiter.api.Test;
20
21 /**
22  * The {@link Enigma2RemoteKeyTest} class is responsible for testing {@link Enigma2RemoteKey}.
23  *
24  * @author Guido Dolfen - Initial contribution
25  */
26 @NonNullByDefault
27 public class Enigma2RemoteKeyTest {
28     @Test
29     public void testGetValue() {
30         assertThat(Enigma2RemoteKey.ARROW_LEFT.getValue(), is(412));
31     }
32 }