]> git.basschouten.com Git - openhab-addons.git/blob
65d4d29b83031708578ddd77c41b5b35146231d8
[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.boschshc.internal.services.cameranotification;
14
15 import static org.junit.jupiter.api.Assertions.assertSame;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.junit.jupiter.api.Test;
19 import org.openhab.core.library.types.OnOffType;
20
21 /**
22  * Unit tests for {@link CameraNotificationState}.
23  * 
24  * @author David Pace - Initial contribution
25  *
26  */
27 @NonNullByDefault
28 class CameraNotificationStateTest {
29
30     @Test
31     void testFromOnOffType() {
32         assertSame(CameraNotificationState.ENABLED, CameraNotificationState.from(OnOffType.ON));
33         assertSame(CameraNotificationState.DISABLED, CameraNotificationState.from(OnOffType.OFF));
34     }
35
36     @Test
37     void testToOnOffType() {
38         assertSame(OnOffType.ON, CameraNotificationState.ENABLED.toOnOffType());
39         assertSame(OnOffType.OFF, CameraNotificationState.DISABLED.toOnOffType());
40     }
41 }