forked from fkarb/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_docstring.py
More file actions
46 lines (32 loc) · 1.85 KB
/
test_docstring.py
File metadata and controls
46 lines (32 loc) · 1.85 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
# ===========================================================================
# 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()