aboutsummaryrefslogtreecommitdiff
path: root/benches/Jellyfin.Common.Benches/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'benches/Jellyfin.Common.Benches/Program.cs')
-rw-r--r--benches/Jellyfin.Common.Benches/Program.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/benches/Jellyfin.Common.Benches/Program.cs b/benches/Jellyfin.Common.Benches/Program.cs
new file mode 100644
index 000000000..b218b0dc1
--- /dev/null
+++ b/benches/Jellyfin.Common.Benches/Program.cs
@@ -0,0 +1,14 @@
+using System;
+using BenchmarkDotNet.Running;
+
+namespace Jellyfin.Common.Benches
+{
+ public static class Program
+ {
+ public static void Main(string[] args)
+ {
+ _ = BenchmarkRunner.Run<HexEncodeBenches>();
+ _ = BenchmarkRunner.Run<HexDecodeBenches>();
+ }
+ }
+}