Convert XML list markup to plain numbered text in UI test remarks
Replace <list type="number"><item>...</item></list> with plain numbered lines in method-level <remarks> blocks across 23 UI test files to match the codebase convention of using simple text in XML doc comments.
This commit is contained in:
@@ -20,13 +20,11 @@ public class AuthApiSmokeTests
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Steps:
|
||||
/// <list type="number">
|
||||
/// <item>Create an HttpClient with a CookieContainer for session tracking.</item>
|
||||
/// <item>GET /api/auth/public-key and verify the PEM response.</item>
|
||||
/// <item>RSA-encrypt a test login payload using the returned public key.</item>
|
||||
/// <item>POST /api/auth/login with the encrypted payload and assert HTTP 200.</item>
|
||||
/// <item>GET /api/auth/me and assert HTTP 200 (session is authenticated).</item>
|
||||
/// </list>
|
||||
/// 1. Create an HttpClient with a CookieContainer for session tracking.
|
||||
/// 2. GET /api/auth/public-key and verify the PEM response.
|
||||
/// 3. RSA-encrypt a test login payload using the returned public key.
|
||||
/// 4. POST /api/auth/login with the encrypted payload and assert HTTP 200.
|
||||
/// 5. GET /api/auth/me and assert HTTP 200 (session is authenticated).
|
||||
/// </remarks>
|
||||
[Fact]
|
||||
[Trait("Category", "RequiresDockerHost")]
|
||||
|
||||
Reference in New Issue
Block a user