예제 #1
0
        //[Fact]
        public void RunAndCompareWithXUnit()
        {
            var result = RunAndCompare(
                run: BenchmarkRunConfiguration.D60T2MT2(),
                compareTo: BenchmarkRunConfiguration.D40T2MT2());

            Console.WriteLine(result.PrettyPrint());
        }
예제 #2
0
        //[Fact]
        public void RecordWithXUnit()
        {
            var configurations = new[]
            {
                //BenchmarkRunConfiguration.D40T2ST(),
                //BenchmarkRunConfiguration.D40T2MT1(),
                BenchmarkRunConfiguration.D40T2MT2(),
            };

            foreach (var configuration in configurations)
            {
                Record(configuration);
            }
        }