This repository was archived by the owner on Dec 12, 2017. It is now read-only.

Description
The code:
[Theory]
[InlineData(10000)]
[InlineData(1500)]
public void TestMethod(int maxDuration)
{
}
This test is shown as a single test case.
When I clear R# caches and restart Visual Studio it starts showing this method as multiple tests (per InlineData), but when I run them it runs/shows only one test again.
I faced this issue quite recently, previously I didn't have this problem.
PS: I'm using VS2017 and R# 2017.2. I tried different versions of "xunit" and "xunit.runner.visualstudio" (including 2.3.0), but it works the same.