mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
11 lines
177 B
Python
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)
|