-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Filtering sources based on assembly type (#1537)
* Filtering sources based on assembly type * * Renaming PEReader -> AssemblyProperties. * Correcting Tests * Ignoring EventDataCollector Tests * change to IList
- Loading branch information
1 parent
534026f
commit 2f6e1db
Showing
7 changed files
with
326 additions
and
68 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
src/Microsoft.TestPlatform.Common/Interfaces/IAssemblyProperties.cs
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,18 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace Microsoft.VisualStudio.TestPlatform.Common.Interfaces | ||
{ | ||
using Microsoft.VisualStudio.TestPlatform.Common.Utilities; | ||
|
||
/// <summary> | ||
/// Metadata that is available for input test source, e.g. Whether it is native or managed dll, etc.. | ||
/// </summary> | ||
public interface IAssemblyProperties | ||
{ | ||
/// <summary> | ||
/// Determines assembly type from file. | ||
/// </summary> | ||
AssemblyType GetAssemblyType(string filePath); | ||
} | ||
} |
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
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
Oops, something went wrong.