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.nobohub.internal.model;
15 import static org.junit.jupiter.api.Assertions.assertEquals;
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.junit.jupiter.api.Test;
21 * Unit tests for temperature model object.
23 * @author Jørgen Austvik - Initial contribution
26 public class TemperatureTest {
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);
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);