Xunit.XunitContext.InnerInit()

Here are the examples of the csharp api Xunit.XunitContext.InnerInit() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : XunitContext.cs
with MIT License
from SimonCropp

public static void Init()
        {
            var useGlobalLock = Trace.UseGlobalLock;
            Trace.UseGlobalLock = true;
            InnerInit();
            Trace.UseGlobalLock = useGlobalLock;
        }