Skip to content

Commit e30d12f

Browse files
fix: accesibility of members
1 parent 650e288 commit e30d12f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

benchmark/BenchmarkRunner/Benchmarks/ReadBenchmark.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ public abstract class ReadBenchmark
66
protected SemaphoreSlim _initLock = new(1, 1);
77

88
[Params(1000)]
9-
protected int QueriesToRun { get; set; }
9+
public int QueriesToRun { get; set; }
1010

1111
[Params(500)]
12-
protected int CustomerCount { get; set; }
12+
public int CustomerCount { get; set; }
1313

1414
[Params(100, 500)]
1515
public int Limit { get; set; }

benchmark/BenchmarkRunner/Benchmarks/WriteBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public abstract class WriteBenchmark
66
protected SemaphoreSlim _initLock = new(1, 1);
77

88
[Params(2000000)]
9-
protected int TotalRecords { get; set; }
9+
public int TotalRecords { get; set; }
1010

1111
public abstract Task Sqlc_AddOrderItems();
1212
public abstract Task EFCore_AddOrderItems();

0 commit comments

Comments
 (0)