test_math.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #!/usr/bin/env python3
  2. # Flexlay - A Generic 2D Game Editor
  3. # Copyright (C) 2014 Ingo Ruhnke <grumbel@gmail.com>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. import unittest
  18. from flexlay.math import Point
  19. class FlexlayMathTestCase(unittest.TestCase):
  20. def test_point(self) -> None:
  21. p = Point(11, 17)
  22. self.assertEqual(p.x, 11)
  23. self.assertEqual(p.y, 17)
  24. p = 3 * p
  25. p = p * 4
  26. p *= 5
  27. self.assertEqual(p.x, 660)
  28. self.assertEqual(p.y, 1020)
  29. p = Point(0, 3) + p
  30. p = p + Point(4, 0)
  31. p += Point(1, 2)
  32. self.assertEqual(p.x, 665)
  33. self.assertEqual(p.y, 1025)
  34. self.assertEqual(Point(11, 17), Point(11, 17))
  35. p2 = p.copy()
  36. self.assertEqual(p, p2)
  37. p2.x += 2
  38. p2.y += 3
  39. self.assertNotEqual(p, p2)
  40. # EOF #