We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1795ea2 commit 11a1fa5Copy full SHA for 11a1fa5
tests/Magick.NET.Tests/MagickNETTests/TheLogEvent.cs
@@ -23,13 +23,16 @@ public class TheLogEvent
23
[Fact]
24
public void ShouldPassOrderedTests()
25
{
26
- ShouldNotCallLogDelegeteWhenLogEventsAreNotSet();
+ TestHelper.ExecuteInsideLock(() =>
27
+ {
28
+ ShouldNotCallLogDelegeteWhenLogEventsAreNotSet();
29
- ShouldCallLogDelegateWhenLogEventsAreSet();
30
+ ShouldCallLogDelegateWhenLogEventsAreSet();
31
- ShouldLogTraceEventsWhenLogEventsIsSetToAll();
32
+ ShouldLogTraceEventsWhenLogEventsIsSetToAll();
33
- ShouldStopCallingLogDelegateWhenLogDelegateIsRemoved();
34
+ ShouldStopCallingLogDelegateWhenLogDelegateIsRemoved();
35
+ });
36
}
37
38
private void ShouldNotCallLogDelegeteWhenLogEventsAreNotSet()
0 commit comments