Ejemplo n.º 1
0
        public void Can_run_with_known_counters_and_json_format()
        {
            RegisterMetrics();

            var reporter = new ConsoleReporter(new JsonReportFormatter());

            reporter.Run();
        }
Ejemplo n.º 2
0
        public void Can_run_with_known_counters_and_human_readable_format()
        {
            RegisterMetrics();

            var reporter = new ConsoleReporter();

            reporter.Run();
        }