Merge Conflicts

This commit is contained in:
PiotrP 2015-11-30 17:33:16 -08:00
commit 07bf895700
43 changed files with 3082 additions and 1 deletions

View file

@ -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);
}
}