public void SolarSystem_Celestials_UnknownReturnsEmpty(int solarSystemId)
        {
            var ss = new SolarSystem(solarSystemId, 0, "", 0, SecurityLevel.Lowsec, Position.Empty, null);

            var celestials = ss.Celestials().ToList();

            celestials.Should().HaveCount(0);
        }