forked from SciSharp/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_docstring.py
More file actions
27 lines (17 loc) · 1023 Bytes
/
test_docstring.py
File metadata and controls
27 lines (17 loc) · 1023 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 doc strings support."""
def test_doc_with_ctor():
from Python.Test import DocWithCtorTest
assert DocWithCtorTest.__doc__ == 'DocWithCtorTest Class'
assert DocWithCtorTest.TestMethod.__doc__ == 'DocWithCtorTest TestMethod'
assert DocWithCtorTest.StaticTestMethod.__doc__ == 'DocWithCtorTest StaticTestMethod'
def test_doc_with_ctor_no_doc():
from Python.Test import DocWithCtorNoDocTest
assert DocWithCtorNoDocTest.__doc__ == 'Void .ctor(Boolean)'
assert DocWithCtorNoDocTest.TestMethod.__doc__ == 'Void TestMethod(Double, Int32)'
assert DocWithCtorNoDocTest.StaticTestMethod.__doc__ == 'Void StaticTestMethod(Double, Int32)'
def test_doc_without_ctor():
from Python.Test import DocWithoutCtorTest
assert DocWithoutCtorTest.__doc__ == 'DocWithoutCtorTest Class'
assert DocWithoutCtorTest.TestMethod.__doc__ == 'DocWithoutCtorTest TestMethod'
assert DocWithoutCtorTest.StaticTestMethod.__doc__ == 'DocWithoutCtorTest StaticTestMethod'