Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
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
)