Description
I have this project and it was first structured with all new subclasses being created on the same file but I made a choice to separate them all into specific files (this pattern could also start to happen with sealed classes and part files in the future).
Now, the tests for the project were following the same structure as the /lib/src
so all tests for one class were written on the same file inside another group
for it. And now I have the grinding work to move all classes to their specific files mainly being solved by Move top-level to file
(except a few bugs with exports with currently open issues for them).
But to move every group is a bit grinding still and I'd like to ask for a similar feature to move top-level groups that don't refer to anything outside their scope into new files with the overhead of adding the new void main() { ... }
and imports.