kenherring / ablunit-test-runner

VSCode Extension to integrate OpenEdge ABLUnit tests via the native API
MIT License
3 stars 3 forks source link

Test Explorer not showing Tests with expected #159

Open mikefechner opened 1 month ago

mikefechner commented 1 month ago

Testclass has 3 Test Methods

    @Test.
    METHOD PUBLIC VOID CustomerFormTest ():
    @Test.
    METHOD PUBLIC VOID CustomerViewerTest ():
    @Test (expected="Consultingwerk.Exceptions.InvalidParameterValueException").
    METHOD PUBLIC VOID CustomerGridTest ():

Only the first two are shown in the Test explorer:

image

However all three are executed - as expected:

image