chore(test): remove unused non-null test for ActionScheduler

This commit is contained in:
2026-03-06 14:17:04 +08:00
parent 6635d7aca2
commit c6c8a83dad

View File

@@ -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;目的:验证正常入轮与副作用