forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_callback.py
More file actions
27 lines (18 loc) · 788 Bytes
/
test_callback.py
File metadata and controls
27 lines (18 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
"""Test that callbacks from C# into python work."""
def simpleDefaultArg(arg='test'):
return arg
def test_default_for_null():
"""Test that C# can use null for an optional python argument"""
from Python.Test import CallbackTest
test_instance = CallbackTest()
ret_val = test_instance.Call_simpleDefaultArg_WithNull(__name__)
python_ret_val = simpleDefaultArg(None)
assert ret_val == python_ret_val
def test_default_for_none():
"""Test that C# can use no argument for an optional python argument"""
from Python.Test import CallbackTest
test_instance = CallbackTest()
ret_val = test_instance.Call_simpleDefaultArg_WithEmptyArgs(__name__)
python_ret_val = simpleDefaultArg()
assert ret_val == python_ret_val