Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyAttributeOutsideInitInspection
/
testClass.py
blob: 46cb7f1f064f85295b508d6918834d8fb2bf898e [
file
] [
log
] [
blame
]
__author__
=
'ktisha'
from
unittest
import
TestCase
class
TestA
(
TestCase
):
def
setUp
(
self
):
self
.
b
=
1
def
test_b
(
self
):
self
.
assertEquals
(
self
.
b
,
1
)