A library that computes the ephemerides.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

21 行
581 B

  1. import unittest
  2. from kosmorrolib import model, core
  3. from kosmorrolib.enum import ObjectIdentifier
  4. class DataTestCase(unittest.TestCase):
  5. def test_object_radius_must_be_set_to_get_apparent_radius(self):
  6. o = model.Planet(ObjectIdentifier.SATURN, "SATURN")
  7. with self.assertRaises(ValueError) as context:
  8. o.get_apparent_radius(
  9. core.get_timescale().now(), core.get_skf_objects()["earth"]
  10. )
  11. self.assertEqual(("Missing radius for SATURN",), context.exception.args)
  12. if __name__ == "__main__":
  13. unittest.main()