class documentation

class TestData:

View In Hierarchy

Descriptor to provide TestCase instance isolation for attributes assigned during the setUpTestData() phase.

Allow safe alteration of objects assigned in setUpTestData() by test methods by exposing deep copies instead of the original objects.

Objects are deep copied using a memo kept on the test case instance in order to maintain their original relationships.

Method __get__ Undocumented
Method __init__ Undocumented
Method __repr__ Undocumented
Method get​_memo Undocumented
Class Variable memo​_attr Undocumented
Instance Variable data Undocumented
Instance Variable name Undocumented
def __get__(self, instance, owner):

Undocumented

def __init__(self, name, data):

Undocumented

def __repr__(self):

Undocumented

def get_memo(self, testcase):

Undocumented

memo_attr: str =

Undocumented

data =

Undocumented

name =

Undocumented