]> git.basschouten.com Git - openhab-addons.git/blob
85c5a0cde83927e641b0c9259ddefc6f31d19bdd
[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.nobohub.internal.model;
14
15 import static org.junit.jupiter.api.Assertions.assertEquals;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.junit.jupiter.api.Test;
19
20 /**
21  * Unit tests for temperature model object.
22  *
23  * @author Jørgen Austvik - Initial contribution
24  */
25 @NonNullByDefault
26 public class TemperatureTest {
27
28     @Test
29     public void testParseY02() throws NoboDataException {
30         Temperature temp = Temperature.fromY02("Y02 123123123123 12.345");
31         assertEquals(new SerialNumber("123123123123"), temp.getSerialNumber());
32         assertEquals(12.34, temp.getTemperature(), 0.1);
33     }
34
35     @Test
36     public void testParseY02NATemp() throws NoboDataException {
37         Temperature temp = Temperature.fromY02("Y02 123123123123 N/A");
38         assertEquals(new SerialNumber("123123123123"), temp.getSerialNumber());
39         assertEquals(Double.NaN, temp.getTemperature(), 0.1);
40     }
41 }