ThreadStaticTests DisposingOnADifferentThreadToCreationThrowsException Method Delta Engine Documentation

Namespace: DeltaEngine.Tests.Extensions
Assembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void DisposingOnADifferentThreadToCreationThrowsException()
Examples

[Test, Ignore]
public void DisposingOnADifferentThreadToCreationThrowsException()
{
    var worker = new BackgroundWorker();
    worker.DoWork += CreateScope;
    worker.RunWorkerCompleted += DisposeScope;
    worker.RunWorkerAsync();
    Thread.Sleep(1);
}
See Also