public CounterExtensionsShould() { _value = 100d; _counterLabel = new CounterLabel("abc"); _counterLabel.IncrementTo(_value); _counter = new Counter <CounterExtensionsShould>(Fixture.Create <string>(), null, new[] { _counterLabel }); }
public void HasValue() { _label.IncrementTo(100d); _label.Value.Should().Be(100d); }