Gets the total number of test cases that did not run because they were skipped.
Namespace:
Gallio.MSBuildTasksAssembly: Gallio.MSBuildTasks (in Gallio.MSBuildTasks.dll) Version: 3.2.0.0 (3.2.528.0)
Syntax
Examples
To use this property, you need to include an Output tag within the
Gallio tag to specify a name to reference it:
CopyC#
<Gallio>
<!-- This tells MSBuild that the task's SkippedCount output property will
be made available as a property called SkippedCount in the project
after the tests have been run: -->
<Output TaskParameter="SkippedCount" PropertyName="SkippedCount" />
</Gallio>
<!-- After execution the number of skipped tests can be retrieved like this: -->
<Message Text="$(SkippedCount) tests were skipped." />