mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 16:32:16 +00:00
15 lines
261 B
Python
15 lines
261 B
Python
import unittest
|
|
from _code_test import *
|
|
|
|
class CodeTest(unittest.TestCase):
|
|
|
|
def testIt(self):
|
|
a = A()
|
|
a.x = 12
|
|
self.assertEqual(get(a), 12)
|
|
self.assertEqual(foo(), "Hello!")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|