浏览代码

test: add TestType enum

github@esslinger.dev 4 年之前
父节点
当前提交
b3b98a5cc8
共有 1 个文件被更改,包括 17 次插入0 次删除
  1. 17 0
      tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs

+ 17 - 0
tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs

@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Jellyfin.Api.Tests.ModelBinders
+{
+    public enum TestType
+    {
+#pragma warning disable SA1602 // Enumeration items should be documented
+        How,
+        Much,
+        Is,
+        The,
+        Fish
+#pragma warning restore SA1602 // Enumeration items should be documented
+    }
+}