public void SolarSystem_Constellation_NullSolarSystem_ThrowsException()
        {
            SolarSystem ss = null;

            Action a = () => ss.Constellation();

            a.Should().Throw <ArgumentNullException>();
        }