mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-05 18:45:01 +01:00
15 lines
229 B
Python
15 lines
229 B
Python
#
|
|
# Project Atomic Unit Test Example Template
|
|
#
|
|
|
|
import unittest
|
|
|
|
|
|
class TestAtomicUnit(unittest.TestCase):
|
|
def test_unit_desired_behavior(self):
|
|
self.assertTrue(True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|