You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an abstract class which extends utest's Test class and contains a bunch of generic tests against an interface. I then have two sub classes which extend this abstract and provide a concrete implementation for it to run its tests against. I do this as utest doesn't allow adding the multiple instances of the same type to a runner.
While all the tests appear in the test viewer tab in vscode this causes two issues.
Double clicking on a test to navigate to the function location no longer works, instead it just navigates you to the declaration of the specific sub class.
Icons no longer appear in the gutter next to the test functions in the abstract class, instead you get a single icon in the gutter next to the sub class declaration.
Icon next to sub classes
No icons next to test functions.
I appreciate displaying icons next to actual functions in these cases might be tricky as one sub class might be passing and another failing, not to mention if vscode even supports stuff like this in the first place.
The text was updated successfully, but these errors were encountered:
Hello,
I have an abstract class which extends utest's
Test
class and contains a bunch of generic tests against an interface. I then have two sub classes which extend this abstract and provide a concrete implementation for it to run its tests against. I do this as utest doesn't allow adding the multiple instances of the same type to a runner.While all the tests appear in the test viewer tab in vscode this causes two issues.
Double clicking on a test to navigate to the function location no longer works, instead it just navigates you to the declaration of the specific sub class.
Icons no longer appear in the gutter next to the test functions in the abstract class, instead you get a single icon in the gutter next to the sub class declaration.
Icon next to sub classes
No icons next to test functions.
I appreciate displaying icons next to actual functions in these cases might be tricky as one sub class might be passing and another failing, not to mention if vscode even supports stuff like this in the first place.
The text was updated successfully, but these errors were encountered: