Skip to content

Commit ef184d7

Browse files
Add comments to empty interface methods
Explain why TestStarted and TestFinished are intentionally empty (required by ICallbacks interface but not needed for our use case). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8d5ae03 commit ef184d7

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

UnityProject/Packages/com.jasonxudeveloper.jengine.core/Editor/Misc/TestRunnerCallbacks.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@ public void RunFinished(ITestResultAdaptor result)
3131
IsRunningTests = false;
3232
}
3333

34+
// Required by ICallbacks interface but not needed - we only track overall run state
3435
public void TestStarted(ITestAdaptor test) { }
3536

37+
// Required by ICallbacks interface but not needed - we only track overall run state
3638
public void TestFinished(ITestResultAdaptor result) { }
3739
}
3840
}

0 commit comments

Comments
 (0)