FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/tests/test_docstring.py at python3 · fkarb/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
fkarb
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
1
Star
13
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
tests
/
test_docstring.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (32 loc) · 1.85 KB
Breadcrumbs
pythonnet
/
src
/
tests
/
test_docstring.py
Copy path
File metadata and controls
46 lines (32 loc) · 1.85 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
35
36
37
38
39
40
41
42
43
44
45
46
# ===========================================================================
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
# ===========================================================================
import
unittest
import
clr
clr
.
AddReference
(
'Python.Test'
)
from
Python
.
Test
import
DocWithCtorTest
,
DocWithoutCtorTest
,
DocWithCtorNoDocTest
class
DocStringTests
(
unittest
.
TestCase
):
"""Test doc strings support."""
def
testDocWithCtor
(
self
):
self
.
assertEqual
(
DocWithCtorTest
.
__doc__
,
'DocWithCtorTest Class'
)
self
.
assertEqual
(
DocWithCtorTest
.
TestMethod
.
__doc__
,
'DocWithCtorTest TestMethod'
)
self
.
assertEqual
(
DocWithCtorTest
.
StaticTestMethod
.
__doc__
,
'DocWithCtorTest StaticTestMethod'
)
def
testDocWithCtorNoDoc
(
self
):
self
.
assertEqual
(
DocWithCtorNoDocTest
.
__doc__
,
'Void .ctor(Boolean)'
)
self
.
assertEqual
(
DocWithCtorNoDocTest
.
TestMethod
.
__doc__
,
'Void TestMethod(Double, Int32)'
)
self
.
assertEqual
(
DocWithCtorNoDocTest
.
StaticTestMethod
.
__doc__
,
'Void StaticTestMethod(Double, Int32)'
)
def
testDocWithoutCtor
(
self
):
self
.
assertEqual
(
DocWithoutCtorTest
.
__doc__
,
'DocWithoutCtorTest Class'
)
self
.
assertEqual
(
DocWithoutCtorTest
.
TestMethod
.
__doc__
,
'DocWithoutCtorTest TestMethod'
)
self
.
assertEqual
(
DocWithoutCtorTest
.
StaticTestMethod
.
__doc__
,
'DocWithoutCtorTest StaticTestMethod'
)
def
test_suite
():
return
unittest
.
makeSuite
(
DocStringTests
)
def
main
():
unittest
.
TextTestRunner
().
run
(
test_suite
())
if
__name__
==
'__main__'
:
main
()
Back
|
FazBrowse Home
|
New Git URL