Backend Testing Test Naming Standards Pattern : - MethodUnderTest — The actual method on the class being tested, not necessarily the entry point you call. - Scenario — The input, state, or condition being tested. - ExpectedBehavior — What the method should do or return. Test Folder Structure Integration Test Base Inherit from (extends Foundatio.Xunit's ): Key members: , , , , , (ProxyTimeProvider). FluentClient Pattern Use with for HTTP testing: Auth helpers: , , , (API key bearer token). Test Data Builders ProxyTimeProvider NOT — use .NET 8+ with : Test Principles - TDD workflow — Write a fa…