mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
18 lines
235 B
Python
18 lines
235 B
Python
__author__ = 'ktisha'
|
|
|
|
import unittest
|
|
|
|
class A:
|
|
def __init__(self):
|
|
self._x = 1
|
|
|
|
def _foo(self):
|
|
pass
|
|
|
|
|
|
class TestA(unittest.TestCase):
|
|
def testA(self):
|
|
a = A()
|
|
a._foo()
|
|
print(a._x)
|