forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor integration tests (microsoft#19)
Add an integration test framework that runs tests for vstest.console.exe. Create test assets for integration tests. The test framework provides standard way to query for test assets, test runner etc. irrespective of IDE or CI. * Fix TestImpact smoke tests. Use full path in test environment. Sign testimpact listener assembly. * Add /tests and /testCaseFilter arguments for vstest.console. Refactor tests to check for all IArgumentProcessor implementations in command map. * Rename test asset to not conflict with actual unit test projects. * Fix inproc data collector interface implementation. * Add set and reset environment to test script. A few variables like TP_ROOT_DIR, TPT_TargetFramework, TPT_TargetRuntime are set before the test run. Fix the usage of environment variable in integration tests. * Update netci.groovy to run smoke tests.
- Loading branch information
Showing
36 changed files
with
701 additions
and
841 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", | ||
"settings": { | ||
"documentationRules": { | ||
"companyName": "Microsoft Corporation", | ||
"copyrightText": "Copyright (c) {companyName}. All rights reserved.\nLicensed under the MIT license. See LICENSE file in the project root for full license information.", | ||
"xmlHeader": false, | ||
"fileNamingConvention": "metadata" | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RuleSet Name="Rules for test platform tests" Description="Code analysis rules for test projects." ToolsVersion="14.0"> | ||
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers"> | ||
<!-- XML documentation checks are not required for test projects --> | ||
<Rule Id="SA1652" Action="None" /> | ||
</Rules> | ||
</RuleSet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
203 changes: 0 additions & 203 deletions
203
src/vstest.console/Processors/EnableStaticLoggersArgumentProcessor.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.