using Nonemm.Contests.Rules; using Nonemm.Core; namespace Nonemm.Contests.Tests; public class OceaniaDxTests { private static ContestLog LogFor() => new(new OceaniaDx(ModeCategory.Phone), TestLog.Germany, TestLog.CountryFile); [Theory] [InlineData(1_830, 20)] [InlineData(3_650, 10)] [InlineData(7_050, 5)] [InlineData(14_150, 1)] public void TheLowerTheBandTheMorePoints(double kilohertz, int expected) => Assert.Equal( expected, LogFor().Judge(TestLog.Contact("VK4XYZ", kilohertz, mode: Modes.Usb)).Points); /// One side of the contact has to be in Oceania. [Fact] public void AContactOutsideOceaniaScoresNothing() { Verdict verdict = LogFor().Judge(TestLog.Contact("IK2XYZ", mode: Modes.Usb)); Assert.Equal(0, verdict.Points); Assert.Empty(verdict.NewMultipliers); } }