Method not found: ‘Void Microsoft.IdentityModel.Tokens.TokenValidationResult..ctor

# Technical Postmortem: MissingMethodException in Blazor Web App During OIDC Token Validation ## Summary A Blazor Web App targeting .NET 9.0 failed during authentication with a `System.MissingMethodException` when calling `OpenIdConnectHandler.ValidateTokenUsingHandlerAsync()`. The application crashed at startup due to an incompatible version of `Microsoft.IdentityModel.Tokens`, specifically related to the `TokenValidationResult` constructor signature. Key details: – Exception: `Method not … Read more

Is robot framework able to test that something is *not* happening?

# Postmortem: Handling Negative Assertions in Robot Framework for MQTT Event Verification ## Summary A critical gap was identified in automated tests for an IoT lighting system: Robot Framework had no explicit mechanism to confirm the **absence** of an expected MQTT message within a defined time window during night-mode operations. This led to incomplete verification … Read more