ipjohnson / SeleniumFixture

Selenium testing fixture for C#
Microsoft Public License
15 stars 6 forks source link

Test count in runner keeps increasing during run #8

Open martijnburgers opened 7 years ago

martijnburgers commented 7 years ago

Because a single test can run for various browsers the amount of tests to be run is currently unknown or just wrong at the beginning of a test-run and keeps increasing during the run.

It's not really a big issue but it would be nice if the amount of tests is calculated once at the beginning of a test-run.

I can imagine that this is impossible or hard to implement.

ipjohnson commented 7 years ago

Yeah that's more a function of the way xUnit discovery works. Originally when I was implementing I really didn't see a way around it. That said it's worth taking a look at some point to see if this has changed.