Index: test/Common/DelftTools.Utils.Tests/Aop/TraceDllImportCallsAttributeTest.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/Common/DelftTools.Utils.Tests/Aop/TraceDllImportCallsAttributeTest.cs (.../TraceDllImportCallsAttributeTest.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/Common/DelftTools.Utils.Tests/Aop/TraceDllImportCallsAttributeTest.cs (.../TraceDllImportCallsAttributeTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -18,28 +18,28 @@ DllImports.GetCurrentThreadId(); DllImports.GetWindowThreadProcessId(DllImports.GetForegroundWindow(), IntPtr.Zero); - Assert.IsFalse(TraceDllImportCallsConfig.IsLoggingEnabled(typeof (DllImports))); + Assert.IsFalse(TraceDllImportCallsConfig.IsLoggingEnabled(typeof(DllImports))); - TraceDllImportCallsConfig.StartLogging(typeof (DllImports), logPath); + TraceDllImportCallsConfig.StartLogging(typeof(DllImports), logPath); // with logging: - DllImports.GetCurrentThreadId(); - DllImports.GetWindowThreadProcessId(DllImports.GetForegroundWindow(), IntPtr.Zero); + DllImports.GetCurrentThreadId(); + DllImports.GetWindowThreadProcessId(DllImports.GetForegroundWindow(), IntPtr.Zero); - TraceDllImportCallsConfig.StopLogging(typeof (DllImports)); - + TraceDllImportCallsConfig.StopLogging(typeof(DllImports)); + // without logging: DllImports.GetCurrentThreadId(); - var expectedLineStarts = new [] - { - "", - "", - " ", - " " - }; + var expectedLineStarts = new[] + { + "", + "", + " ", + " " + }; var actualLines = File.ReadAllLines(logPath);