2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.lcn.internal.subhandler;
15 import static org.mockito.Mockito.*;
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.junit.jupiter.api.BeforeEach;
19 import org.junit.jupiter.api.Test;
20 import org.openhab.binding.lcn.internal.common.LcnChannelGroup;
25 * @author Andre Jendrysseck - Initial contribution
28 public class LcnModuleCodeSubHandlerTest extends AbstractTestLcnModuleSubHandler {
37 public void testHexFingerprint() {
38 tryParseAllHandlers("=M000005.ZFABCDEF");
39 verify(handler).triggerChannel(LcnChannelGroup.CODE, "fingerprint", "ABCDEF");
40 verify(handler).triggerChannel(any(), any(), any());
44 public void testDecFingerprint() {
45 tryParseAllHandlers("=M000005.ZF255255255");
46 verify(handler).triggerChannel(LcnChannelGroup.CODE, "fingerprint", "FFFFFF");
47 verify(handler).triggerChannel(any(), any(), any());