A plugin-first dotnet framework for rapidly building anything hosted in the web.
$ dotnet add package Dosaic.Testing.NUnitusing var metricsCollector = new TestMetricsCollector("my-metric-name");
metricsCollector.CollectedMetrics.Should().BeEmpty();
// do test stuff e.g. call method, etc..
metricsCollector.Instruments.Should().Contain("my-metric-name");
metricsCollector.CollectedMetrics.Should().ContainsMetric(1);