I have written a Scala class in my project and wish to stub the corresponding src/test/**/TestClass.scala
by some magical key command or equivalent. Is there a way to do this that is hidden within VS Code or Metals?
edit: I was too general here. I'm not looking for stubbing out tests within a test class for some existing class. I'm looking for feature parity with JetBrains, where I can right-click on a class and get the option to create a corresponding test file within the project. The generated test file contains by default a package
line, and an empty class definition that extents a unit testing framework API such as scalatest. The test file template can be further configured by the user via a preferences menu.