mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 10:43:15 +02:00
17 lines
289 B
Python
17 lines
289 B
Python
import unittest
|
|
|
|
class TestQAWorks(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.pcb = None
|
|
|
|
def test_assert_true( self ):
|
|
self.assertTrue( True )
|
|
|
|
def test_assert_equal( self ):
|
|
self.assertEqual(2, 1+1)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|