From 0bea76edb9e9d07f78d00be871dd17bb70e0848a Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Thu, 29 Jan 2026 15:17:47 -0600 Subject: [PATCH] chore: delete test Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .../MeshServiceViewModelTest.kt | 48 ------------------- 1 file changed, 48 deletions(-) delete mode 100644 mesh_service_example/src/test/kotlin/com/meshtastic/android/meshserviceexample/MeshServiceViewModelTest.kt diff --git a/mesh_service_example/src/test/kotlin/com/meshtastic/android/meshserviceexample/MeshServiceViewModelTest.kt b/mesh_service_example/src/test/kotlin/com/meshtastic/android/meshserviceexample/MeshServiceViewModelTest.kt deleted file mode 100644 index 19688e22b..000000000 --- a/mesh_service_example/src/test/kotlin/com/meshtastic/android/meshserviceexample/MeshServiceViewModelTest.kt +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2025-2026 Meshtastic LLC - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package com.meshtastic.android.meshserviceexample - -import org.junit.Assert.assertEquals -import org.junit.Assert.assertTrue -import org.junit.Test -import org.meshtastic.core.service.testing.FakeIMeshService - -/** Unit tests for [MeshServiceViewModel] using the [FakeIMeshService] test harness. */ -class MeshServiceViewModelTest { - - @Test - fun `test service connection updates status`() { - val viewModel = MeshServiceViewModel() - val fakeService = FakeIMeshService() - - viewModel.onServiceConnected(fakeService) - - assertTrue(viewModel.serviceConnectionStatus.value) - assertEquals("fake_id", viewModel.myId.value) - assertEquals("CONNECTED", viewModel.connectionState.value) - } - - @Test - fun `test service disconnection updates status`() { - val viewModel = MeshServiceViewModel() - viewModel.onServiceConnected(FakeIMeshService()) - - viewModel.onServiceDisconnected() - - assertEquals(false, viewModel.serviceConnectionStatus.value) - } -}