We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be14ede commit 6b05a2cCopy full SHA for 6b05a2c
tests/test_common.py
@@ -83,6 +83,18 @@ def test_netfx(example_netstandard):
83
from clr_loader import get_netfx
84
85
netfx = get_netfx()
86
+ asm = netfx.get_assembly(example_netstandard / "example.dll")
87
+
88
+ run_tests(asm)
89
90
91
+@pytest.mark.skipif(
92
+ sys.platform != "win32", reason=".NET Framework only exists on Windows"
93
+)
94
+def test_netfx_separate_domain(example_netstandard):
95
+ from clr_loader import get_netfx
96
97
+ netfx = get_netfx(domain="some_domain")
98
asm = netfx.get_assembly(os.path.join(example_netstandard, "example.dll"))
99
100
run_tests(asm)
0 commit comments