@@ -15,30 +15,40 @@ namespace Akka.TestKit.NUnit
15
15
/// </summary>
16
16
public class NUnitAssertions : ITestKitAssertions
17
17
{
18
-
19
18
public void Fail ( string format = "" , params object [ ] args )
20
19
{
21
- Assert . Fail ( string . Format ( format , args ) ) ;
20
+ Assert . Fail ( NUnitAssertBase . ConvertMessageWithArgs ( format , args ) ) ;
22
21
}
23
22
24
23
public void AssertTrue ( bool condition , string format = "" , params object [ ] args )
25
24
{
26
- Assert . That ( condition , Is . True , string . Format ( format , args ) ) ;
25
+ Assert . That ( condition , Is . True , NUnitAssertBase . ConvertMessageWithArgs ( format , args ) ) ;
27
26
}
28
27
29
28
public void AssertFalse ( bool condition , string format = "" , params object [ ] args )
30
29
{
31
- Assert . That ( condition , Is . False , string . Format ( format , args ) ) ;
30
+ Assert . That ( condition , Is . False , NUnitAssertBase . ConvertMessageWithArgs ( format , args ) ) ;
32
31
}
33
32
34
33
public void AssertEqual < T > ( T expected , T actual , string format = "" , params object [ ] args )
35
34
{
36
- Assert . That ( actual , Is . EqualTo ( expected ) , string . Format ( format , args ) ) ;
35
+ Assert . That ( actual , Is . EqualTo ( expected ) , NUnitAssertBase . ConvertMessageWithArgs ( format , args ) ) ;
37
36
}
38
37
39
38
public void AssertEqual < T > ( T expected , T actual , Func < T , T , bool > comparer , string format = "" , params object [ ] args )
40
39
{
41
- Assert . That ( actual , Is . EqualTo ( expected ) . Using < T > ( comparer ) , string . Format ( format , args ) ) ;
40
+ Assert . That ( actual , Is . EqualTo ( expected ) . Using < T > ( comparer ) , NUnitAssertBase . ConvertMessageWithArgs ( format , args ) ) ;
41
+ }
42
+
43
+ /// <remarks>
44
+ /// This class only exists to allow us to call <c>NUnit.Framework.AssertBase.ConvertMessageWithArgs</c>.
45
+ /// As of NUnit 4.3.1, this method is declared <c>protected</c> and thus cannot be called directly.
46
+ /// See https://github.com/nunit/nunit/blob/4.3.1/src/NUnitFramework/framework/AssertBase.cs#L10-L14.
47
+ /// </remarks>
48
+ private sealed class NUnitAssertBase : AssertBase
49
+ {
50
+ public new static string ConvertMessageWithArgs ( string message , object [ ] args ) =>
51
+ AssertBase . ConvertMessageWithArgs ( message , args ) ;
42
52
}
43
53
}
44
54
}
0 commit comments