@@ -29,7 +29,7 @@ internal static class Program
2929 /// </summary>
3030 /// <param name="args">Arguments from command line.</param>
3131 public static void Main ( string [ ] args ) =>
32- Parser . Default . ParseArguments < PrometheusOptions , MetricsOptions , LogsOptions , GrpcNetClientOptions , HttpClientOptions , ConsoleOptions , OpenTelemetryShimOptions , OpenTracingShimOptions , OtlpOptions , InMemoryOptions > ( args )
32+ Parser . Default . ParseArguments < PrometheusOptions , MetricsOptions , LogsOptions , GrpcNetClientOptions , HttpClientOptions , ConsoleOptions , OpenTelemetryShimOptions , OtlpOptions , InMemoryOptions > ( args )
3333 . MapResult (
3434 ( PrometheusOptions options ) => TestPrometheusExporter . Run ( options ) ,
3535 ( MetricsOptions options ) => TestMetrics . Run ( options ) ,
@@ -38,7 +38,6 @@ public static void Main(string[] args) =>
3838 ( HttpClientOptions options ) => TestHttpClient . Run ( options ) ,
3939 ( ConsoleOptions options ) => TestConsoleExporter . Run ( ) ,
4040 ( OpenTelemetryShimOptions options ) => TestOTelShimWithConsoleExporter . Run ( ) ,
41- ( OpenTracingShimOptions options ) => TestOpenTracingShim . Run ( ) ,
4241 ( OtlpOptions options ) => TestOtlpExporter . Run ( options ) ,
4342 ( InMemoryOptions options ) => TestInMemoryExporter . Run ( ) ,
4443 _ => 1 ) ;
@@ -93,9 +92,6 @@ internal sealed class ConsoleOptions;
9392[ Verb ( "otelshim" , HelpText = "Specify the options required to test OpenTelemetry Shim with console exporter" ) ]
9493internal sealed class OpenTelemetryShimOptions ;
9594
96- [ Verb ( "opentracing" , HelpText = "Specify the options required to test OpenTracing Shim with console exporter" ) ]
97- internal sealed class OpenTracingShimOptions ;
98-
9995[ Verb ( "otlp" , HelpText = "Specify the options required to test OpenTelemetry Protocol (OTLP)" ) ]
10096internal sealed class OtlpOptions
10197{
0 commit comments