FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/tests/test_docstring.py at v3.0.3 · pythonnet/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythonnet
/
pythonnet
Public
Notifications
You must be signed in to change notification settings
Fork
780
Star
5.5k
Code
Issues
153
Pull requests
12
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
tests
/
test_docstring.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (21 loc) · 1.14 KB
Breadcrumbs
pythonnet
/
tests
/
test_docstring.py
Copy path
File metadata and controls
34 lines (21 loc) · 1.14 KB
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
28
29
30
31
32
33
34
# -*- 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'
def
test_doc_primitve
():
from
System
import
Int64
,
String
assert
Int64
.
__doc__
is
not
None
assert
String
.
__doc__
is
not
None
Back
|
FazBrowse Home
|
New Git URL