Merge Conflicts
This commit is contained in:
parent
a84a56a152
commit
07bf895700
43 changed files with 3082 additions and 1 deletions
|
@ -0,0 +1,12 @@
|
|||
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
namespace Microsoft.Extensions.Testing.Abstractions
|
||||
{
|
||||
public interface ISourceInformationProvider
|
||||
{
|
||||
SourceInformation GetSourceInformation(MethodInfo method);
|
||||
}
|
||||
}
|
Reference in a new issue