private bool Equals(CounterBenchmarkSetting other)
 {
     return(string.Equals(CounterName, other.CounterName) &&
            AssertionType == other.AssertionType &&
            Assertion.Equals(other.Assertion));
 }
 public CreateCounterBenchmarkSetting(CounterBenchmarkSetting benchmarkSetting, AtomicCounter counter)
 {
     BenchmarkSetting = benchmarkSetting;
     Counter          = counter;
 }