using FluentAssertions; using SatelliteProvider.Common.Utils; namespace SatelliteProvider.Tests; public class GeoUtilsRefactorTests { [Fact] public void GeoUtils_DoesNotExposeCalculatePolygonDiagonalDistance_AZ380_AC1() { // Assert typeof(GeoUtils).GetMethod("CalculatePolygonDiagonalDistance").Should().BeNull( "AZ-380 deletes the dead alias method that simply forwarded to CalculateDistance"); } }