forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_constructors.py
More file actions
55 lines (37 loc) · 1.28 KB
/
test_constructors.py
File metadata and controls
55 lines (37 loc) · 1.28 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
"""Test CLR class constructor support."""
import System
def test_enum_constructor():
"""Test enum constructor args"""
from System import TypeCode
from Python.Test import EnumConstructorTest
ob = EnumConstructorTest(TypeCode.Int32)
assert ob.value == TypeCode.Int32
def test_flags_constructor():
"""Test flags constructor args"""
from Python.Test import FlagsConstructorTest
from System.IO import FileAccess
flags = FileAccess.Read | FileAccess.Write
ob = FlagsConstructorTest(flags)
assert ob.value == flags
def test_struct_constructor():
"""Test struct constructor args"""
from System import Guid
from Python.Test import StructConstructorTest
guid = Guid.NewGuid()
ob = StructConstructorTest(guid)
assert ob.value == guid
def test_subclass_constructor():
"""Test subclass constructor args"""
from Python.Test import SubclassConstructorTest
class Sub(System.Exception):
pass
instance = Sub()
ob = SubclassConstructorTest(instance)
assert isinstance(ob.value, System.Exception)
def test_multiple_constructor():
from Python.Test import MultipleConstructorsTest
import System
# Test parameterless
ob = MultipleConstructorsTest()
assert ob.value == ""