aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub@esslinger.dev <simon@esslinger.dev>2020-10-03 01:09:28 +0200
committergithub@esslinger.dev <simon@esslinger.dev>2020-10-03 01:09:28 +0200
commitb3b98a5cc8d49174dda4d4784a7e9297b5961f68 (patch)
tree0a2485830090c8d242f4e4bcf143bfb545c2b937
parent33f80dc3c167f07348cd817f38a33a78302bda6b (diff)
test: add TestType enum
-rw-r--r--tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs b/tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs
new file mode 100644
index 000000000..544a74637
--- /dev/null
+++ b/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
+ }
+}