Beispiel #1
0
        public CounterExtensionsShould()
        {
            _value        = 100d;
            _counterLabel = new CounterLabel("abc");
            _counterLabel.IncrementTo(_value);

            _counter = new Counter <CounterExtensionsShould>(Fixture.Create <string>(), null, new[]
            {
                _counterLabel
            });
        }
Beispiel #2
0
 public CounterLabelShould()
 {
     _label = new CounterLabel(Fixture.Create <string>());
 }