Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Van Patten <jvp@justinvp.com>2016-10-03 21:26:53 +0300
committerJustin Van Patten <jvp@justinvp.com>2016-10-03 21:26:53 +0300
commitb89e707b412d743236e973a8d1fe04c3dd2cf32b (patch)
tree473df5a12b9f4f4c86b5a473d68b6b8b61daafca /Documentation
parent2efda521e46ed6b3a341a847209b24c6f516b156 (diff)
Rename Xunit.PlatformID -> TestPlatforms in docs
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/project-docs/developer-guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/project-docs/developer-guide.md b/Documentation/project-docs/developer-guide.md
index bbacc4eb85..38eebaaf1e 100644
--- a/Documentation/project-docs/developer-guide.md
+++ b/Documentation/project-docs/developer-guide.md
@@ -186,7 +186,7 @@ xunit.console.netcore.exe *.dll -trait category=outerloop
msbuild *.csproj /p:WithCategories=OuterLoop
```
-_**`PlatformSpecific(Xunit.PlatformID platforms)`:**_
+_**`PlatformSpecific(TestPlatforms platforms)`:**_
Use this attribute on test methods to specify that this test may only be run on the specified platforms. This attribute returns the following categories based on platform
- `nonwindowstests`: for tests that don't run on Windows
@@ -198,7 +198,7 @@ To run Linux-specific tests on a Linux box, use the following command line:
xunit.console.netcore.exe *.dll -notrait category=nonlinuxtests
```
-_**`ActiveIssue(int issue, Xunit.PlatformID platforms)`:**_
+_**`ActiveIssue(int issue, TestPlatforms platforms)`:**_
Use this attribute over test methods, to skip failing tests only on the specific platforms, if no platforms are specified, then the test is skipped on all platforms. This attribute returns the 'failing' category, so to run all acceptable tests on Linux that are not failing, use the following commandline,
```sh
xunit.console.netcore.exe *.dll -notrait category=failing -notrait category=nonlinuxtests