summaryrefslogtreecommitdiff
path: root/ICSharpCode.Decompiler/Tests/Types/EnumTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ICSharpCode.Decompiler/Tests/Types/EnumTests.cs')
-rw-r--r--ICSharpCode.Decompiler/Tests/Types/EnumTests.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/ICSharpCode.Decompiler/Tests/Types/EnumTests.cs b/ICSharpCode.Decompiler/Tests/Types/EnumTests.cs
new file mode 100644
index 00000000..fb48d016
--- /dev/null
+++ b/ICSharpCode.Decompiler/Tests/Types/EnumTests.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using NUnit.Framework;
+
+namespace ICSharpCode.Decompiler.Tests.Types
+{
+ [TestFixture]
+ public class EnumTests : DecompilerTestBase
+ {
+ [Test]
+ public void EnumSamples()
+ {
+ ValidateFileRoundtrip(@"Types\S_EnumSamples.cs");
+ }
+ }
+}