public static JsonRpcTestOptions ConfigureForXUnit( this JsonRpcTestOptions jsonRpcTestOptions, ITestOutputHelper outputHelper, LogEventLevel logEventLevel = LogEventLevel.Debug ) => jsonRpcTestOptions .WithClientLoggerFactory(new TestLoggerFactory(outputHelper, "{Timestamp:yyyy-MM-dd HH:mm:ss} [Client] [{Level}] {Message}{NewLine}{Exception}", logEventLevel)) .WithServerLoggerFactory(new TestLoggerFactory(outputHelper, "{Timestamp:yyyy-MM-dd HH:mm:ss} [Server] [{Level}] {Message}{NewLine}{Exception}", logEventLevel));
public LanguageProtocolTestBase(JsonRpcTestOptions testOptions) : base(testOptions) { }
public DebugAdapterProtocolTestBase(JsonRpcTestOptions testOptions) : base(testOptions) { }
public JsonRpcTestOptions Configure(JsonRpcTestOptions options) => options;
public DebugAdapterServerTestBase(JsonRpcTestOptions jsonRpcTestOptions) : base(jsonRpcTestOptions) { }
public JsonRpcTestOptions Configure(JsonRpcTestOptions options) { return(options); }
public LanguageServerTestBase(JsonRpcTestOptions jsonRpcTestOptions) : base(jsonRpcTestOptions) { }