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
{{ message }}
This repository has been archived by the owner on Oct 16, 2018. It is now read-only.
Xamarin Studio 6 introduces the concept of "Enable text editor unit test integration" under Preferences | Text Editor | Source Analysis, which is not enabled by default.
It works for NUnit, but not yet for xUnit. Should investigate to see how the integration should be implemented.
The text was updated successfully, but these errors were encountered:
Also, you may notice that the nodes don't appear for [InlineData] attributes. They also don't appear for NUnit [TestCase] attributes like they're supposed to. This is a bug which I've reported.
In your current code you set the testCaseMethodAttributeMarker in Manifest.addin.xml to XUnit.TheoryAttribute. The first thing I notice is that the namespace should be Xunit rather than XUnit. I also notice that in the NUnit addin, this is set to NUnit.TestCaseAttribute which more closely matches Xunit.InlineDataAttribute. So I have a feeling that it would be better to use Xunit.InlineDataAttribute for this.
Xamarin Studio 6 introduces the concept of "Enable text editor unit test integration" under Preferences | Text Editor | Source Analysis, which is not enabled by default.
It works for NUnit, but not yet for xUnit. Should investigate to see how the integration should be implemented.
The text was updated successfully, but these errors were encountered: