aboutsummaryrefslogtreecommitdiff
path: root/benches/Jellyfin.Common.Benches/Program.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-10-19 00:22:08 +0200
committerBond_009 <bond.009@outlook.com>2019-11-01 17:52:29 +0100
commita245f5a0d463e132bcbb3c5871465bdb8bbec0b7 (patch)
tree0c948c2838ea856bd596223ef4d286547aaba767 /benches/Jellyfin.Common.Benches/Program.cs
parent89a21c96c05dd89ff2d2bd5926d0f98c6ef0db9b (diff)
Rewrite hex encoder/decoder
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>();
+ }
+ }
+}