We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17df538 commit d0c7b56Copy full SHA for d0c7b56
tests/test_common.py
@@ -98,6 +98,18 @@ def test_netfx(example_netstandard):
98
from clr_loader import get_netfx
99
100
netfx = get_netfx()
101
+ asm = netfx.get_assembly(example_netstandard / "example.dll")
102
+
103
+ run_tests(asm)
104
105
106
+@pytest.mark.skipif(
107
+ sys.platform != "win32", reason=".NET Framework only exists on Windows"
108
+)
109
+def test_netfx_separate_domain(example_netstandard):
110
+ from clr_loader import get_netfx
111
112
+ netfx = get_netfx(domain="some_domain")
113
asm = netfx.get_assembly(os.path.join(example_netstandard, "example.dll"))
114
115
run_tests(asm)
0 commit comments