From e68179028d1abe101c7d8b6e96c91d58be9d9cc0 Mon Sep 17 00:00:00 2001 From: Yifan Hong Date: Fri, 5 Nov 2021 23:35:57 -0700 Subject: [PATCH] Move BatteryServiceTest to HealthServiceWrapperTest. Moving the file in this commit so that git recognizes that the file is moved, not deleted then created. Test: none (note: this cannot be built. See next CL that correctly fix this.) Bug: 177269435 Change-Id: I3c41ba1571c30a912b558dac4f1aaf8f1b5c5b61 --- .../HealthServiceWrapperTest.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename services/tests/servicestests/src/com/android/server/{BatteryServiceTest.java => health/HealthServiceWrapperTest.java} (98%) diff --git a/services/tests/servicestests/src/com/android/server/BatteryServiceTest.java b/services/tests/servicestests/src/com/android/server/health/HealthServiceWrapperTest.java similarity index 98% rename from services/tests/servicestests/src/com/android/server/BatteryServiceTest.java rename to services/tests/servicestests/src/com/android/server/health/HealthServiceWrapperTest.java index a2ecbc30ec645..98c1e1c23de9e 100644 --- a/services/tests/servicestests/src/com/android/server/BatteryServiceTest.java +++ b/services/tests/servicestests/src/com/android/server/health/HealthServiceWrapperTest.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package com.android.server; +package com.android.server.health; import static junit.framework.Assert.*; @@ -36,7 +36,7 @@ import java.util.Arrays; import java.util.Collection; import java.util.NoSuchElementException; -public class BatteryServiceTest extends AndroidTestCase { +public class HealthServiceWrapperTest extends AndroidTestCase { @Mock IServiceManager mMockedManager; @Mock IHealth mMockedHal;