Snapshooter.Xunit.XunitSnapshotFullNameReader.IsTheoryTestMethod(System.Reflection.MemberInfo)

Here are the examples of the csharp api Snapshooter.Xunit.XunitSnapshotFullNameReader.IsTheoryTestMethod(System.Reflection.MemberInfo) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : XunitSnapshotFullNameReader.cs
with MIT License
from SwissLife-OSS

private static bool IsXunitTestMethod(MemberInfo method)
        {
            bool isFactTest = IsFactTestMethod(method);
            bool isTheoryTest = IsTheoryTestMethod(method);

            return isFactTest || isTheoryTest;
        }