Skip to content

Commit

Permalink
Add UUID benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
khellang authored and YohDeadfall committed Feb 5, 2019
1 parent 33081f4 commit d7faf77
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/Npgsql.Benchmarks/TypeHandlers/Uuid.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using BenchmarkDotNet.Attributes;
using Npgsql.TypeHandlers;

namespace Npgsql.Benchmarks.TypeHandlers
{
[Config(typeof(Config))]
public class Uuid : TypeHandlerBenchmarks<Guid>
{
public Uuid() : base(new UuidHandler()) { }
}
}

0 comments on commit d7faf77

Please sign in to comment.