Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyProtectedMemberInspection
/
test.py
blob: d8f6cdc66947262eb255c6d7a6be47359cb655a3 [
file
] [
log
] [
blame
]
__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
)