Skip to content

Commit 1a552fe

Browse files
committed
switched to NUnit 4.2.2
1 parent ec95778 commit 1a552fe

File tree

3 files changed

+29
-39
lines changed

3 files changed

+29
-39
lines changed

src/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<!-- Test Packages -->
1414
<MicrosoftNetTestSdkPackageVersion>17.11.1</MicrosoftNetTestSdkPackageVersion>
1515
<NUnitAnalyzersPackageVersion>4.3.0</NUnitAnalyzersPackageVersion>
16-
<NUnitPackageVersion>3.14.0</NUnitPackageVersion>
16+
<NUnitPackageVersion>4.2.2</NUnitPackageVersion>
1717
<NUnit3TestAdapterPackageVersion>4.6.0</NUnit3TestAdapterPackageVersion>
1818
<QuackersTestLoggerPackageVersion>1.0.25</QuackersTestLoggerPackageVersion>
1919
</PropertyGroup>

src/log4net.Tests/Appender/SmtpPickupDirAppenderTest.cs

+6-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public SmtpPickupDirAppenderTest()
6464
/// with all appenders, and deletes any test files used
6565
/// for logging.
6666
/// </summary>
67-
private void ResetLogger()
67+
private static void ResetLogger()
6868
{
6969
// Regular users should not use the clear method lightly!
7070
LogManager.GetRepository().ResetConfiguration();
@@ -110,7 +110,7 @@ private void DeleteTestFiles()
110110
/// </summary>
111111
/// <param name="appender">The appender to use</param>
112112
/// <returns>A configured ILogger</returns>
113-
private ILogger CreateLogger(SmtpPickupDirAppender appender)
113+
private static ILogger CreateLogger(SmtpPickupDirAppender appender)
114114
{
115115
Repository.Hierarchy.Hierarchy h = (Repository.Hierarchy.Hierarchy)LogManager.CreateRepository("TestRepository");
116116

@@ -178,7 +178,8 @@ public void TestOutputContainsSentDate()
178178
string datePart = line.Substring(dateHeaderStart.Length);
179179
DateTime date = DateTime.ParseExact(datePart, "r", System.Globalization.CultureInfo.InvariantCulture);
180180
double diff = Math.Abs((DateTime.UtcNow - date).TotalMilliseconds);
181-
Assert.LessOrEqual(diff, 1000, "Times should be equal, allowing a diff of one second to make test robust");
181+
Assert.That(diff, Is.LessThanOrEqualTo(1000),
182+
"Times should be equal, allowing a diff of one second to make test robust");
182183
hasDateHeader = true;
183184
}
184185
}
@@ -191,6 +192,8 @@ public void TestOutputContainsSentDate()
191192
/// Verifies that file extension is applied to output file name.
192193
/// </summary>
193194
[Test]
195+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Performance", "CA1846:Prefer 'AsSpan' over 'Substring'",
196+
Justification = "only .net8")]
194197
public void TestConfigurableFileExtension()
195198
{
196199
Utils.InconclusiveOnMono();

src/log4net.Tests/Util/SystemInfoTest.cs

+22-35
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ private static Func<string> GetAssemblyLocationInfoMethodCall()
6060
return Expression.Lambda<Func<string>>(methodCall, Array.Empty<ParameterExpression>()).Compile();
6161
}
6262

63-
public static string TestAssemblyLocationInfoMethod()
64-
{
65-
return SystemInfo.AssemblyLocationInfo(Assembly.GetCallingAssembly());
66-
}
63+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Structure", "NUnit1028:The non-test method is public",
64+
Justification = "Reflection")]
65+
public static string TestAssemblyLocationInfoMethod()
66+
=> SystemInfo.AssemblyLocationInfo(Assembly.GetCallingAssembly());
6767

6868
[Test]
6969
public void TestGetTypeFromStringFullyQualified()
@@ -131,9 +131,10 @@ public void TestGetTypeFromStringFails1()
131131
Type? t;
132132

133133
t = GetTypeFromString("LOG4NET.TESTS.UTIL.SYSTEMINFOTEST,LOG4NET.TESTS", false, false);
134-
Assert.That(t, Is.SameAs(null), "Test explicit case sensitive fails type load");
134+
Assert.That(t, Is.Null, "Test explicit case sensitive fails type load");
135135

136-
Assert.Throws<TypeLoadException>(() => GetTypeFromString("LOG4NET.TESTS.UTIL.SYSTEMINFOTEST,LOG4NET.TESTS", true, false));
136+
Assert.Throws<TypeLoadException>(
137+
() => GetTypeFromString("LOG4NET.TESTS.UTIL.SYSTEMINFOTEST,LOG4NET.TESTS", true, false));
137138
}
138139

139140
[Test]
@@ -142,52 +143,38 @@ public void TestGetTypeFromStringFails2()
142143
Type? t;
143144

144145
t = GetTypeFromString("LOG4NET.TESTS.UTIL.SYSTEMINFOTEST", false, false);
145-
Assert.That(t, Is.SameAs(null), "Test explicit case sensitive fails type load");
146+
Assert.That(t, Is.Null, "Test explicit case sensitive fails type load");
146147

147148
Assert.Throws<TypeLoadException>(() => GetTypeFromString("LOG4NET.TESTS.UTIL.SYSTEMINFOTEST", true, false));
148149
}
149150

150151
// Wraps SystemInfo.GetTypeFromString because the method relies on GetCallingAssembly, which is
151152
// unavailable in CoreFX. As a workaround, only overloads which explicitly take a Type or Assembly
152153
// are exposed for NETSTANDARD1_3.
153-
private Type? GetTypeFromString(string typeName, bool throwOnError, bool ignoreCase)
154-
{
155-
return SystemInfo.GetTypeFromString(typeName, throwOnError, ignoreCase);
156-
}
154+
private static Type? GetTypeFromString(string typeName, bool throwOnError, bool ignoreCase)
155+
=> SystemInfo.GetTypeFromString(typeName, throwOnError, ignoreCase);
157156

158157
[Test]
159-
public void EqualsIgnoringCase_BothNull_true()
160-
{
161-
Assert.True(SystemInfo.EqualsIgnoringCase(null, null));
162-
}
158+
public void EqualsIgnoringCase_BothNull_true()
159+
=> Assert.That(SystemInfo.EqualsIgnoringCase(null, null), Is.True);
163160

164161
[Test]
165-
public void EqualsIgnoringCase_LeftNull_false()
166-
{
167-
Assert.False(SystemInfo.EqualsIgnoringCase(null, "foo"));
168-
}
162+
public void EqualsIgnoringCase_LeftNull_false()
163+
=> Assert.That(SystemInfo.EqualsIgnoringCase(null, "foo"), Is.False);
169164

170165
[Test]
171-
public void EqualsIgnoringCase_RightNull_false()
172-
{
173-
Assert.False(SystemInfo.EqualsIgnoringCase("foo", null));
174-
}
166+
public void EqualsIgnoringCase_RightNull_false()
167+
=> Assert.That(SystemInfo.EqualsIgnoringCase("foo", null), Is.False);
175168

176169
[Test]
177-
public void EqualsIgnoringCase_SameStringsSameCase_true()
178-
{
179-
Assert.True(SystemInfo.EqualsIgnoringCase("foo", "foo"));
180-
}
170+
public void EqualsIgnoringCase_SameStringsSameCase_true()
171+
=> Assert.That(SystemInfo.EqualsIgnoringCase("foo", "foo"), Is.True);
181172

182173
[Test]
183-
public void EqualsIgnoringCase_SameStringsDifferentCase_true()
184-
{
185-
Assert.True(SystemInfo.EqualsIgnoringCase("foo", "FOO"));
186-
}
174+
public void EqualsIgnoringCase_SameStringsDifferentCase_true()
175+
=> Assert.That(SystemInfo.EqualsIgnoringCase("foo", "FOO"), Is.True);
187176

188177
[Test]
189-
public void EqualsIgnoringCase_DifferentStrings_false()
190-
{
191-
Assert.False(SystemInfo.EqualsIgnoringCase("foo", "foobar"));
192-
}
178+
public void EqualsIgnoringCase_DifferentStrings_false()
179+
=> Assert.That(SystemInfo.EqualsIgnoringCase("foo", "foobar"), Is.False);
193180
}

0 commit comments

Comments
 (0)