From c6c8a83dad86042134fd4e84ec76eb73d354999f Mon Sep 17 00:00:00 2001 From: slhafzjw Date: Fri, 6 Mar 2026 14:17:04 +0800 Subject: [PATCH] chore(test): remove unused non-null test for ActionScheduler --- .../action/dispatcher/executor/ActionSchedulerTest.kt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Partner-Core/src/test/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionSchedulerTest.kt b/Partner-Core/src/test/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionSchedulerTest.kt index a254ffd8..f631bd0f 100644 --- a/Partner-Core/src/test/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionSchedulerTest.kt +++ b/Partner-Core/src/test/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionSchedulerTest.kt @@ -102,15 +102,6 @@ class ActionSchedulerTest { readlnOrNull() } - @Test - fun `execute with null input should return null and no side effects`() { - // 场景编号:1;路径:B1;目的:验证正常早退 - val result = actionScheduler.schedule(null) - - assertEquals(null, result) - verify(actionCapability, Mockito.never()).putAction(any(ExecutableAction::class.java)) - } - @Test fun `execute should put action and schedule valid ONCE prepare action`() { // 场景编号:2;路径:B2 → B2.3;目的:验证正常入轮与副作用