From 5dd7a661202b17545cea6d932b124d84eac8aac4 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 26 Mar 2021 18:46:15 +1000 Subject: [PATCH] Cleanup serialisation of test cases in CheatDecoderTests --- .../Client.Common/cheats/CheatDecoderTests.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Tests/Client.Common/cheats/CheatDecoderTests.cs b/src/BizHawk.Tests/Client.Common/cheats/CheatDecoderTests.cs index 57a4bd9733..bb9fc87d0f 100644 --- a/src/BizHawk.Tests/Client.Common/cheats/CheatDecoderTests.cs +++ b/src/BizHawk.Tests/Client.Common/cheats/CheatDecoderTests.cs @@ -22,7 +22,16 @@ namespace BizHawk.Tests.Client.Common.cheats => GenerateNonsense ? NonsenseData : RealData; public string GetDisplayName(MethodInfo methodInfo, object?[] data) - => $"{methodInfo.Name}({string.Join(", ", data.Select(o => o is int i ? $"0x{i:X}" : o?.ToString() ?? "null"))})"; + { + static string Format(object? o) => o switch + { + null => "null", + int i => $"0x{i:X}", + string s => $"\"{s}\"", + _ => o.ToString()! + }; + return $"{methodInfo.Name}({string.Join(", ", data.Select(Format))})"; + } } private const string ERROR_GBA_CODEBREAKER = "Codebreaker/GameShark SP/Xploder codes are not yet supported.";