FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/tests/test_callback.py at refactor-qc-pythonnet5 · QuantConnect/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
QuantConnect
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
31
Star
29
Code
Issues
5
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
tests
/
test_callback.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (18 loc) · 788 Bytes
Breadcrumbs
pythonnet
/
src
/
tests
/
test_callback.py
Copy path
File metadata and controls
27 lines (18 loc) · 788 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
Back
|
FazBrowse Home
|
New Git URL