Any support for continuous testing?

I’d like to add support for continuous testing in my plugin. It appears that Rider supports it:

Is that based on anything common in the plugin SDK, or will I need to roll my own implementation? I’m not seeing anything obvious searching the plugin SDK, but maybe I’m overlooking something.

AFAIK, this is implemented differently in every language and tool set, for instance in JVM / IntelliJ IDEA it is that button and com.intellij.execution.testDiscovery.JvmToggleAutoTestAction:

1 Like

That helps tremendously! There’s a more generalized notion of a ToggleAutoTestAction and scaffolding around that upon which I can build something that’s at least reasonably consistent with existing functionality. Thanks!