Files
openide/python/testData/inspections/PyAttributeOutsideInitInspection/testClass.py

11 lines
177 B
Python

__author__ = 'ktisha'
from unittest import TestCase
class TestA(TestCase):
def setUp(self):
self.b = 1
def test_b(self):
self.assertEquals(self.b, 1)