11 lines
198 B
Python
Raw Normal View History

2023-05-14 12:57:24 +08:00
class TestProxy:
def __proxy__(self, name, value):
return name, value
test = TestProxy()
name, value = test.function1(123)
assert name == 'function1'
assert value == 123
print('PASS')