53
|
1 # Stubs for scales.formats_test (Python 3)
|
|
2 #
|
|
3 # NOTE: This dynamically typed stub was automatically generated by stubgen.
|
|
4
|
|
5 import unittest
|
|
6 from typing import Any
|
|
7
|
|
8 class Root:
|
|
9 def __init__(self) -> None: ...
|
|
10 def getChild(self, name: Any, collapsed: Any): ...
|
|
11
|
|
12 class Child:
|
|
13 countStat: Any = ...
|
|
14 def __init__(self, name: Any, collapsed: Any) -> None: ...
|
|
15
|
|
16 class StatsTest(unittest.TestCase):
|
|
17 def setUp(self) -> None: ...
|
|
18 def testJsonCollapse(self) -> None: ...
|
|
19
|
|
20 class UnicodeFormatTest(unittest.TestCase):
|
|
21 UNICODE_VALUE: Any = ...
|
|
22 def testHtmlFormat(self) -> None: ...
|
|
23 def testJsonFormat(self) -> None: ...
|
|
24 def testJsonFormatBinaryGarbage(self) -> None: ...
|