Initialized repository with current sources.

This commit is contained in:
Matthias Koefferlein
2017-02-12 13:21:08 +01:00
parent bf6ea90905
commit 1b98f9b0f9
3061 changed files with 1992657 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import pya
import unittest
import sys
class DBRegionTest(unittest.TestCase):
def test_1_Region(self):
r = pya.Region()
self.assertEqual(str(r), "")
r.insert(pya.Box(0, 100, 200, 300))
self.assertEqual(str(r), "(0,100;0,300;200,300;200,100)")
r2 = pya.Region(pya.Box(50, 150, 250, 350))
self.assertEqual(str(r2), "(50,150;50,350;250,350;250,150)")
r += r2
self.assertEqual(str(r), "(0,100;0,300;200,300;200,100);(50,150;50,350;250,350;250,150)")
r.merge()
self.assertEqual(str(r), "(0,100;0,300;50,300;50,350;250,350;250,150;200,150;200,100)")
# run unit tests
if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(DBRegionTest)
if not unittest.TextTestRunner(verbosity = 1).run(suite).wasSuccessful():
sys.exit(1)