]> git.basschouten.com Git - openhab-addons.git/blob
9f40d40a4e836a3696f0549ff741563145d8a718
[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.upb.internal.message;
14
15 import static org.junit.jupiter.api.Assertions.*;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.junit.jupiter.api.Test;
19
20 /**
21  * @author Marcus Better - Initial contribution
22  */
23 @NonNullByDefault
24 public class MessageBuilderTest {
25     @Test
26     public void testActivateCmd() {
27         final MessageBuilder msg = MessageBuilder.forCommand(Command.ACTIVATE).network((byte) 1).destination((byte) 2);
28         assertEquals("07100102FF20C7", msg.build());
29     }
30
31     @Test
32     public void testGoto() {
33         final MessageBuilder msg = MessageBuilder.forCommand(Command.GOTO).args((byte) 0x32).network((byte) 1)
34                 .destination((byte) 2);
35         assertEquals("08100102FF223292", msg.build());
36     }
37
38     @Test
39     public void testDeactivateLink() {
40         final MessageBuilder msg = MessageBuilder.forCommand(Command.DEACTIVATE).network((byte) 1).destination((byte) 2)
41                 .link(true);
42         assertEquals("87100102FF2146", msg.build());
43     }
44 }