You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Executes the provided test case by sending its configured table, symbols, and columns to a local TCP listener and asserting the listener's received output against the test case's expected result.
107
+
/// Executes the provided test case by sending its configured table, symbols, and columns to a local TCP listener and
108
+
/// asserting the listener's received output against the test case's expected result.
107
109
/// </summary>
108
-
/// <param name="testCase">The test case to run; provides table, symbols, columns to send and a Result describing the expected validation (Status, Line, AnyLines, or BinaryBase64).</param>
110
+
/// <param name="testCase">
111
+
/// The test case to run; provides table, symbols, columns to send and a Result describing the
112
+
/// expected validation (Status, Line, AnyLines, or BinaryBase64).
113
+
/// </param>
109
114
[TestCaseSource(nameof(TestCases))]
110
115
publicasyncTaskRunTcp(TestCasetestCase)
111
116
{
@@ -162,9 +167,13 @@ public async Task RunTcp(TestCase testCase)
162
167
}
163
168
164
169
/// <summary>
165
-
/// Executes the provided test case by sending data over HTTP to a dummy server using a QuestDB sender and validates the server's response according to the test case result.
170
+
/// Executes the provided test case by sending data over HTTP to a dummy server using a QuestDB sender and validates
171
+
/// the server's response according to the test case result.
166
172
/// </summary>
167
-
/// <param name="testCase">The test case describing table, symbols, columns, and expected result (status, line(s), or base64 binary) to execute and validate.</param>
173
+
/// <param name="testCase">
174
+
/// The test case describing table, symbols, columns, and expected result (status, line(s), or
0 commit comments