source: packson3/test/JsonToolsTest.py@ 136

Last change on this file since 136 was 134, checked in by wouter, 4 years ago

added first python project. Needs some more cleanup

File size: 328 bytes
Line 
1import unittest
2from packson.JsonTools import getInitArgs
3
4
5class JsonToolsTest(unittest.TestCase):
6 def testGetInitArgs(self):
7 class ClassWithInitVars:
8 def __init__(self, x:int):
9 y=2
10
11 self.assertEquals({"x":int}, getInitArgs(ClassWithInitVars))
12
Note: See TracBrowser for help on using the repository browser.