Example #1
0
        public void InitiallyStatsAreZero()
        {
            var stats = _sut.Stats();

            Assert.Equal(0L, stats.Mutants);
            Assert.Equal(0L, stats.Humans);
            Assert.Equal(0.00m, stats.Ratio);
        }
Example #2
0
 public StatsResponse DoGet()
 {
     return(new StatsResponse(_mutant.Stats()));
 }