using Xunit; namespace Azaion.Missions.E2E.Tests.Performance; /// /// Discovery-only smoke test for the Performance category. Real Performance /// scenarios (NFT-PERF-01..04) land in AZ-586. /// public sealed class Sanity { [Fact] [Trait("Category", "Perf")] [Trait("Traces", "AC-3")] public void Discovery_smoke_test_runs() { // Arrange const int sentinel = 1; // Act var result = sentinel + 0; // Assert Assert.Equal(1, result); } }