mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 13:35:58 +07:00
9 lines
162 B
Python
9 lines
162 B
Python
__author__ = 'ktisha'
|
|
|
|
from unittest import TestCase
|
|
class MyTestCase(TestCase):
|
|
def setUp(self):
|
|
self.my = 1
|
|
|
|
def test(self):
|
|
self.my = 2 |