From 596688e1f790e55fe631e35dc5bd2174beb9d26a Mon Sep 17 00:00:00 2001 From: Rodrigo Cesar Date: Tue, 28 May 2024 13:48:22 -0300 Subject: [PATCH] Update TestFile --- test-files/{TestClass.cs => TestFile.cs} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename test-files/{TestClass.cs => TestFile.cs} (92%) diff --git a/test-files/TestClass.cs b/test-files/TestFile.cs similarity index 92% rename from test-files/TestClass.cs rename to test-files/TestFile.cs index 7bee6e5..9f66b5e 100644 --- a/test-files/TestClass.cs +++ b/test-files/TestFile.cs @@ -3,7 +3,7 @@ using System.Diagnostics; using System.Runtime.Serialization; -namespace TestClass +namespace TestNamespace { /// /// Sample class comment. @@ -29,5 +29,6 @@ public enum TestEnum { D = 0b_0000_0100, // binary: 4 in decimal E = 0x005, // hexadecimal: 5 in decimal F = 0x000_01a, // hexadecimal: 26 in decimal + G // 27 in decimal } }